docker setup

This commit is contained in:
2025-11-29 20:56:06 +01:00
parent 43ef1bc376
commit 6144c28855
5 changed files with 251 additions and 1 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
services:
backend:
container_name: mayo-production-manager-backend
build:
context: ./backend
dockerfile: Dockerfile
environment:
NODE_ENV: production
ports:
- 7090:7090
restart: unless-stopped
frontend:
container_name: mayo-production-manager-frontend
build:
context: ./frontend
dockerfile: Dockerfile
environment:
NODE_ENV: production
ports:
- 7080:7080
restart: unless-stopped