Guest User

Untitled

a guest
May 31st, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. version: "3"
  2. services:
  3.  
  4. guac-postgres:
  5. container_name: guac-postgres
  6. image: postgres
  7. environment:
  8. - POSTGRES_PASSWORD=blahblahblah
  9. volumes:
  10. - home/fred/Projects/Guacamole/init-scripts:/docker-entrypoint-initdb.d
  11. networks:
  12. - guac_nw
  13. deploy:
  14. replicas: 1
  15.  
  16. ehaat-guacd:
  17. container_name: ehaat-guacd
  18. image: guacamole/guacd
  19. networks:
  20. - guac_nw
  21. deploy:
  22. replicas: 1
  23.  
  24. ehaat-guacamole:
  25. container_name: ehaat-guacamole
  26. image: guacamole/guacamole
  27. volumes:
  28. - /home/fred/Projects/Guacamole/guac_home:/root/guac_home
  29. networks:
  30. - guac_nw
  31. environment:
  32. - POSTGRES_DATABASE=guacamole_db
  33. - POSTGRES_USER=guacamole_user
  34. - POSTGRES_PASSWORD=blahblahblah
  35. - POSTGRES_HOSTNAME=guac-postgres
  36. - GUACD_HOSTNAME=ehaat-guacd
  37. - GUACD_PORT=4822
  38. - GUACAMOLE_HOME=/root/guac_home
  39. ports:
  40. - 8080:8080
  41. deploy:
  42. replicas: 1
  43.  
  44. networks:
  45. guac_nw:
Add Comment
Please, Sign In to add comment