idd / docker-compose.yml
esmaill1
feat: implement image processing core, FastAPI backend, and full-stack integration tests
f19ba0f
Raw
History Blame Contribute Delete
307 Bytes
version: "3.8"
services:
studio-web:
build: .
ports:
- "8000:8000"
volumes:
- studio_storage:/app/storage
- ./assets:/app/assets
- ./core:/app/core
- ./config:/app/config
environment:
- PORT=8000
restart: unless-stopped
volumes:
studio_storage: