SWE-Review / docker-compose.yml
zhimin-z
refine
bfe5f98
raw
history blame
482 Bytes
services:
msr-miner:
build:
context: .
dockerfile: Dockerfile
container_name: gharchive-miner
restart: unless-stopped
env_file:
- .env
volumes:
# Mount entire workspace for live code updates
- .:/app
# Mount gharchive workspace for data storage
- ../gharchive:/gharchive:ro
environment:
- PYTHONUNBUFFERED=1
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"