Spaces:
Running
on
Zero
Running
on
Zero
File size: 371 Bytes
55d584b 0ccf2f0 55d584b 0ccf2f0 55d584b 0ccf2f0 55d584b 0ccf2f0 55d584b 0ccf2f0 55d584b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# Docker setup (has Windows networking issues)
# Alternative: Use direct Python execution below
services:
warbler-cda-api:
build: .
command: ["python", "-m", "warbler_cda.api.service"]
ports:
- "8000:8000"
environment:
- FRACTALSTAT_TESTING=true
- PYTHONPATH=/app
volumes:
- ./data:/app/data:rw
restart: unless-stopped
|