This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/scripts/docker-compose.yml

47 lines
1003 B
YAML
Raw Permalink Normal View History

version: "3.7"
2020-05-28 17:29:28 +00:00
services:
postgresql:
container_name: postgres
image: docker.io/library/postgres:16
2020-05-28 17:29:28 +00:00
volumes:
- db-data:/var/lib/postgresql/data
2020-05-28 17:29:28 +00:00
environment:
POSTGRES_HOST_AUTH_METHOD: trust
2020-12-05 21:08:42 +00:00
POSTGRES_DB: authentik
2020-05-28 17:29:28 +00:00
ports:
- 127.0.0.1:5432:5432
2020-05-28 17:29:28 +00:00
restart: always
redis:
container_name: redis
image: docker.io/library/redis
2020-05-28 17:29:28 +00:00
ports:
- 127.0.0.1:6379:6379
2020-05-28 17:29:28 +00:00
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/scr/app/localMetadata
restart: always
spotlight:
image: ghcr.io/getsentry/spotlight
ports:
- 127.0.0.1:8969:8969
restart: always
2020-05-28 17:29:28 +00:00
volumes:
db-data:
driver: local
s3-data:
driver: local
s3-metadata:
driver: local