tududi/docker-compose.yml
Antonis Anastasiadis dad0bd45ff
Facilitate custom UID/GID at runtime in Docker. (#161)
* Cleanup /scripts dir

* Facilitate custom UID/GID at Docker runtime.

Changes file permissions at runtime depending on UID/GID.

* Disable non-functional frontend tests for now.

---------

Co-authored-by: antanst <>
2025-07-15 21:25:06 +03:00

18 lines
569 B
YAML

services:
tududi:
image: chrisvel/tududi:latest
container_name: tududi
environment:
- TUDUDI_USER_EMAIL=admin@example.com
- TUDUDI_USER_PASSWORD=your-secure-password
- TUDUDI_SESSION_SECRET=changeme-please-use-openssl
- TUDUDI_INTERNAL_SSL_ENABLED=false
- TUDUDI_ALLOWED_ORIGINS=http://localhost:3002
# Runtime UID/GID configuration - set these to match your host user/group
- PUID=1001
- PGID=1001
volumes:
- ./tududi_db:/app/backend/db
ports:
- "3002:3002"
restart: unless-stopped