diff --git a/authentik/docker-compose.yml b/authentik/docker-compose.yml index 51a0f9d..9233063 100644 --- a/authentik/docker-compose.yml +++ b/authentik/docker-compose.yml @@ -13,7 +13,6 @@ services: timeout: 5s volumes: - database:/var/lib/postgresql/data - - /etc/localtime:/etc/localtime:ro environment: POSTGRES_PASSWORD: ${PG_PASS:?database password required} POSTGRES_USER: ${PG_USER:-authentik} @@ -32,7 +31,6 @@ services: timeout: 3s volumes: - redis:/data - - /etc/localtime:/etc/localtime:ro server: image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.2.2} restart: unless-stopped @@ -48,7 +46,6 @@ services: volumes: - /share/docker_data/authentik/media:/media - /share/docker_data/authentik/custom-templates:/templates - - /etc/localtime:/etc/localtime:ro ports: - "${COMPOSE_PORT_HTTP:-9003}:9000" - "${COMPOSE_PORT_HTTPS:-9453}:9443" @@ -78,7 +75,6 @@ services: - /share/docker_data/authentik/media:/media - /share/docker_data/authentik/certs:/certs - /share/docker_data/authentik/custom-templates:/templates - - /etc/localtime:/etc/localtime:ro depends_on: - postgresql - redis