feat(docker): Deploy frontend from express

This commit is contained in:
2025-05-29 15:54:19 +02:00
parent 98fdc290f4
commit 58fc2f7acf
3 changed files with 40 additions and 10 deletions

View File

@@ -15,8 +15,8 @@ services:
timeout: 10s
retries: 3
backend:
build: ./backend
service:
build: ./
restart: always
ports:
- "5000:5000"
@@ -25,11 +25,3 @@ services:
depends_on:
db:
condition: service_healthy
frontend:
build: ./frontend
restart: always
ports:
- "3000:3000"
depends_on:
- backend