Created
July 14, 2025 08:58
-
-
Save loleg/67e81ee53bfb9850e17c238cc351ffe3 to your computer and use it in GitHub Desktop.
Docker Compose configuration for a DEV release of dribdat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
dribdat: | |
image: dribdat/dribdat:dev | |
ports: | |
- 5000:5000 | |
environment: | |
- DATABASE_URL=sqlite:////opt/dribdat.db | |
- SERVER_URL=localhost:5000 | |
- DRIBDAT_ENV=prod | |
- DRIBDAT_SECRET=changeme | |
- TIME_ZONE=Europe/Zurich | |
- DRIBDAT_ALLOW_EVENTS=1 | |
- DRIBDAT_SOCIAL_LINKS=0 | |
volumes: | |
- ./data/:/opt:rw:z |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment