fix: update docker-compose paths for backend and frontend services
Some checks failed
Deploy Application / deploy (push) Failing after 9s
Test runner / check-runner (push) Successful in 3s

This commit is contained in:
2026-01-06 21:48:26 +01:00
parent ab5f7c3854
commit f4895eaa03

View File

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