seems to be the last RC - this app is done - so am I

This commit is contained in:
nocci 2025-05-09 14:34:33 +02:00
parent 1506201913
commit f5b184fe54
37 changed files with 1932 additions and 661 deletions

View file

@ -1,15 +1,44 @@
services:
redis:
image: redis:alpine
ports:
- "6379:6379"
volumes:
- redis_data:/data
networks:
- app-network
steam-manager:
build: .
build:
context: .
args:
- UID=0
- GID=1000
ports:
- "5000:5000"
- "5678:5678"
env_file:
- .env
environment:
- REGISTRATION_ENABLED=True
- TZ=
- REDIS_URL=redis://redis:6379/0
volumes:
- ../data:/app/data
- ../data:/app/data
- ./translations:/app/translations:rw
- ../.env:/app/.env
user: "0:"
- ./static:/app/static:rw
user: "0:1000"
restart: unless-stopped
command: ["/app/entrypoint.sh"]
networks:
- app-network
depends_on:
- redis
volumes:
redis_data:
networks:
app-network:
driver: bridge