Start to build backend base

This commit is contained in:
2025-10-31 18:29:31 +01:00
parent f7e1d1539f
commit 602edaae79
8 changed files with 3373 additions and 6 deletions

View File

@@ -80,10 +80,18 @@ services:
element:
image: docker.io/vectorim/element-web
ports:
- 8080:80/tcp
- "8080:80/tcp"
volumes:
- ./docker/element/config.json:/app/config.json:ro
oidc:
image: dexidp/dex
ports:
- "9001:9001"
volumes:
- ./docker/dex:/conf:ro
command: [ "dex", "serve", "/conf/dex.config.yaml" ]
minio:
image: quay.io/minio/minio
command: minio server --console-address ":9002" /data
@@ -101,7 +109,7 @@ services:
image: redis:alpine
command: redis-server --requirepass ${REDIS_PASS:-secretredis}
ports:
- 6379:6379
- "6379:6379"
volumes:
- ./storage/redis-data:/data
- ./storage/redis-conf:/usr/local/etc/redis/redis.conf