docker-compose.yml 671 B

12345678910111213141516171819202122232425262728293031323334
  1. services:
  2. frontend:
  3. container_name: frontend
  4. image: trane-tech-energy-strategy-optimization-platform-frontend:v1.0
  5. ports:
  6. - 8091:80
  7. restart: unless-stopped
  8. backend:
  9. container_name: backend
  10. image: trane-tech-energy-strategy-optimization-platform-backend:v1.0
  11. ports:
  12. - 8092:8082
  13. restart: unless-stopped
  14. nginx:
  15. container_name: nginx
  16. image: nginx:latest
  17. volumes:
  18. - ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf
  19. ports:
  20. - 80:80
  21. - 443:443
  22. depends_on:
  23. - frontend
  24. - backend
  25. networks:
  26. default:
  27. driver: bridge
  28. volumes:
  29. trane_data: