12345678910111213141516171819202122232425262728293031323334 |
- services:
-
- frontend:
- container_name: frontend
- image: trane-tech-energy-strategy-optimization-platform-frontend:v1.0
- ports:
- - 8091:80
- restart: unless-stopped
- backend:
- container_name: backend
- image: trane-tech-energy-strategy-optimization-platform-backend:v1.0
- ports:
- - 8092:8082
- restart: unless-stopped
- nginx:
- container_name: nginx
- image: nginx:latest
- volumes:
- - ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf
- ports:
- - 80:80
- - 443:443
- depends_on:
- - frontend
- - backend
- networks:
- default:
- driver: bridge
- volumes:
- trane_data:
|