Skip to content

Instantly share code, notes, and snippets.

@loleg
Created July 14, 2025 08:58
Show Gist options
  • Save loleg/67e81ee53bfb9850e17c238cc351ffe3 to your computer and use it in GitHub Desktop.
Save loleg/67e81ee53bfb9850e17c238cc351ffe3 to your computer and use it in GitHub Desktop.
Docker Compose configuration for a DEV release of dribdat
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