Delete authentikpostgresql directory

This commit is contained in:
David Rotermund 2024-07-15 10:27:54 +02:00 committed by GitHub
parent 85000ec129
commit 03d9934a9b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 0 additions and 38 deletions

View file

@ -1 +0,0 @@
ROOT_PASSWORD=REDACTED

View file

@ -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

View file

@ -1,2 +0,0 @@
docker compose down

View file

@ -1,2 +0,0 @@
docker compose logs -f

View file

@ -1,2 +0,0 @@
docker compose up -d