docker-compose.yml 654 B

12345678910111213141516171819202122232425
  1. version: '3'
  2. services:
  3. cpee:
  4. image: "cpee:1.4.25"
  5. network_mode: "host" # Temporary workaround for using localhost address in process templates
  6. ports:
  7. - "8298:8298"
  8. volumes:
  9. - cpeeCockpit:/cpee-cockpit
  10. - cpeeServer:/cpee-server
  11. nginx:
  12. image: "nginx:alpine"
  13. ports:
  14. - "9111:80"
  15. volumes:
  16. - cpeeCockpit:/usr/share/nginx/html/cockpit:ro
  17. # Note, that the js libs had to be manually downloaded,
  18. # they aren't part of the cpee gem.
  19. - /var/www/html/js_libs:/usr/share/nginx/html/js_libs:ro
  20. volumes:
  21. # System managed volumes
  22. cpeeCockpit:
  23. cpeeServer: