123456789101112131415161718192021222324252627282930313233 |
- services:
-
- frontend:
- image: trane-tech-energy-strategy-optimization-platform-frontend:v1.0
- # build:
- # context: .
- # dockerfile: ./Dockerfile
- ports:
- - 8091:80
- restart: unless-stopped
- backend:
- image: trane-tech-energy-strategy-optimization-platform-backend:v1.0
- # build:
- # context: .
- # dockerfile: ./Dockerfile
- ports:
- - 8092:8082
- restart: unless-stopped
- nginx:
- image: nginx:latest
- volumes:
- - ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf
- ports:
- - 80:80
- networks:
- default:
- driver: bridge
- volumes:
- trane_data:
|