feat: serve the web app and the backend from Compose

This commit is contained in:
sBubshait 2025-07-21 14:57:11 +03:00
parent 9ab02dda7f
commit 54a1298edf

View File

@ -18,3 +18,20 @@ services:
- db - db
ports: ports:
- 8100:8080 - 8100:8080
server:
restart: unless-stopped
build:
context: ./backend
dockerfile: Dockerfile
ports:
- 4044:8080
web:
restart: unless-stopped
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- 6060:80