From 03d9934a9be9daabe83e9ef49be36acdf5ce390b Mon Sep 17 00:00:00 2001 From: David Rotermund Date: Mon, 15 Jul 2024 10:27:54 +0200 Subject: [PATCH] Delete authentikpostgresql directory --- authentikpostgresql/.env | 1 - authentikpostgresql/compose.yaml | 31 ------------------------------- authentikpostgresql/down.sh | 2 -- authentikpostgresql/logs.sh | 2 -- authentikpostgresql/up.sh | 2 -- 5 files changed, 38 deletions(-) delete mode 100644 authentikpostgresql/.env delete mode 100644 authentikpostgresql/compose.yaml delete mode 100644 authentikpostgresql/down.sh delete mode 100644 authentikpostgresql/logs.sh delete mode 100644 authentikpostgresql/up.sh diff --git a/authentikpostgresql/.env b/authentikpostgresql/.env deleted file mode 100644 index 4dee356..0000000 --- a/authentikpostgresql/.env +++ /dev/null @@ -1 +0,0 @@ -ROOT_PASSWORD=REDACTED diff --git a/authentikpostgresql/compose.yaml b/authentikpostgresql/compose.yaml deleted file mode 100644 index 0e1405b..0000000 --- a/authentikpostgresql/compose.yaml +++ /dev/null @@ -1,31 +0,0 @@ -services: - authentikpostgres: - image: "postgres:12-alpine" - container_name: "authentikpostgres" - hostname: "authentikpostgres" - restart: always - shm_size: 128mb - volumes: - - authentik_database:/var/lib/postgresql/data - ports: - - 6381:5432 - environment: - POSTGRES_PASSWORD: ${ROOT_PASSWORD} - POSTGRES_USER: authentik - POSTGRES_DB: authentik - healthcheck: - test: ["CMD-SHELL", "sh -c 'pg_isready -U authentik -d authentik'"] - interval: 10s - timeout: 3s - retries: 3 - - networks: - - overleaf-network - -volumes: - authentik_database: - - -networks: - overleaf-network: - external: true diff --git a/authentikpostgresql/down.sh b/authentikpostgresql/down.sh deleted file mode 100644 index c864209..0000000 --- a/authentikpostgresql/down.sh +++ /dev/null @@ -1,2 +0,0 @@ -docker compose down - diff --git a/authentikpostgresql/logs.sh b/authentikpostgresql/logs.sh deleted file mode 100644 index 5fd46e9..0000000 --- a/authentikpostgresql/logs.sh +++ /dev/null @@ -1,2 +0,0 @@ -docker compose logs -f - diff --git a/authentikpostgresql/up.sh b/authentikpostgresql/up.sh deleted file mode 100644 index a4a5dbb..0000000 --- a/authentikpostgresql/up.sh +++ /dev/null @@ -1,2 +0,0 @@ -docker compose up -d -