sales / docker-compose.yml
Corin1998's picture
Upload 15 files
9972f7c verified
raw
history blame contribute delete
263 Bytes
services:
api:
build: ./backend
env_file:
- ./backend/.env.example
ports:
- "8000:8000"
web:
build: ./frontend
environment:
- VITE_API_BASE=http://localhost:8000
ports:
- "5173:5173"
depends_on:
- api