This repository has been archived on 2026-05-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GallerySubscriber/docker-compose.dev.yml
T
2026-01-24 22:52:51 -05:00

36 lines
745 B
YAML

# Development overrides - use with: docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
services:
app:
build:
context: ./backend
dockerfile: Dockerfile.dev
volumes:
- ./backend/app:/app/app:ro
- downloads:/data/downloads
- config:/data/config
- cookies:/data/cookies
environment:
- DEBUG=true
- LOG_LEVEL=DEBUG
celery:
build:
context: ./backend
dockerfile: Dockerfile.dev
volumes:
- ./backend/app:/app/app:ro
- downloads:/data/downloads
- config:/data/config
- cookies:/data/cookies
environment:
- DEBUG=true
- LOG_LEVEL=DEBUG
db:
ports:
- "5432:5432"
redis:
ports:
- "6379:6379"