mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
20 lines
423 B
YAML
20 lines
423 B
YAML
services:
|
|
web:
|
|
# build:
|
|
# context: ..
|
|
# dockerfile: docker/Dockerfile.dev
|
|
image: dispatcharr/dispatcharr:dev
|
|
container_name: dispatcharr_web
|
|
ports:
|
|
- "5656:5656"
|
|
- 9191:9191
|
|
volumes:
|
|
- ../:/app
|
|
environment:
|
|
- DISPATHCARR_ENV=dev
|
|
- DB_ENGINE=sqlite
|
|
- REDIS_HOST=localhost
|
|
- CELERY_BROKER_URL=redis://localhost:6379/0
|
|
|
|
volumes:
|
|
postgres_data:
|