docker setup
This commit is contained in:
22
docker-compose.yml
Normal file
22
docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user