From eb664d7199126260cb381f47edbbd0ffd98e1913 Mon Sep 17 00:00:00 2001 From: David Rotermund Date: Fri, 12 Jul 2024 15:05:11 +0200 Subject: [PATCH] Create compose.yaml --- ubuntu/postgresql_authentik/compose.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ubuntu/postgresql_authentik/compose.yaml diff --git a/ubuntu/postgresql_authentik/compose.yaml b/ubuntu/postgresql_authentik/compose.yaml new file mode 100644 index 0000000..8a8b90f --- /dev/null +++ b/ubuntu/postgresql_authentik/compose.yaml @@ -0,0 +1,20 @@ +services: + postgresauth: + image: "postgres:12-alpine" + container_name: "postgres-authentik" + hostname: "postgres-authentik" + restart: always + shm_size: 128mb + volumes: + - database_authentik:/var/lib/postgresql/data + ports: + - 6381:5432 + network_mode: bridge + environment: + POSTGRES_PASSWORD: ${MARIADB_ROOT_PASSWORD} + POSTGRES_USER: authentik + POSTGRES_DB: authentik + +volumes: + database_authentik: +