Files
fastapi-vue-odoo/docker-compose.yml
bartool f4895eaa03
Some checks failed
Deploy Application / deploy (push) Failing after 9s
Test runner / check-runner (push) Successful in 3s
fix: update docker-compose paths for backend and frontend services
2026-01-06 21:48:26 +01:00

19 lines
329 B
YAML

version: "3.9"
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
container_name: my-backend
restart: unless-stopped
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
container_name: my-frontend
ports:
- "6080:80"
restart: unless-stopped