| 12345678910111213141516171819202122232425262728293031 |
- services:
- web:
- build:
- context: .
- target: web
- ports:
- - "3000:3000"
- volumes:
- - db-data:/app/data
- env_file:
- - .env.production
- environment:
- - DATABASE_URL=file:/app/data/prod.db
- restart: unless-stopped
- worker:
- build:
- context: .
- target: worker
- volumes:
- - db-data:/app/data
- env_file:
- - .env.production
- environment:
- - DATABASE_URL=file:/app/data/prod.db
- restart: unless-stopped
- depends_on:
- - web
- volumes:
- db-data:
|