Files
fastapi-vue-odoo/docker-compose.yml
bartool 2749791eed
All checks were successful
Deploy Application / deploy (push) Successful in 10s
Test runner / check-runner (push) Successful in 3s
fix: update container names in docker-compose for backend and frontend services
2026-01-06 22:04:40 +01:00

19 lines
345 B
YAML

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