DogRace / app /docker-compose.yml
JbIPS
Initial commit
f6414bf
raw history blame
No virus
254 Bytes
version: "3.7"
services:
frontend:
build: frontend
ports:
- 8501:8501
depends_on:
- backend
volumes:
- ./frontend:/app
backend:
build: backend
ports:
- 8000:8000
volumes:
- ./backend:/app