mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
* ci: test migrations-from-stable failing Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix postgres path Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
35 lines
788 B
YAML
35 lines
788 B
YAML
services:
|
|
postgresql:
|
|
image: docker.io/library/postgres:${PSQL_TAG:-16}
|
|
volumes:
|
|
- db-data:/var/lib/postgresql
|
|
command: "-c log_statement=all"
|
|
environment:
|
|
POSTGRES_USER: authentik
|
|
POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77"
|
|
POSTGRES_DB: authentik
|
|
ports:
|
|
- 5432:5432
|
|
restart: always
|
|
s3:
|
|
container_name: s3
|
|
image: docker.io/zenko/cloudserver
|
|
environment:
|
|
REMOTE_MANAGEMENT_DISABLE: "1"
|
|
SCALITY_ACCESS_KEY_ID: accessKey1
|
|
SCALITY_SECRET_ACCESS_KEY: secretKey1
|
|
ports:
|
|
- 8020:8000
|
|
volumes:
|
|
- s3-data:/usr/src/app/localData
|
|
- s3-metadata:/usr/src/app/localMetadata
|
|
restart: always
|
|
|
|
volumes:
|
|
db-data:
|
|
driver: local
|
|
s3-data:
|
|
driver: local
|
|
s3-metadata:
|
|
driver: local
|