Plaidstallion

Guacamole compose

Jun 11th, 2020
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. guacamole:
  2. container_name: guacamole
  3. depends_on:
  4. - guacd
  5. - guacdb
  6. environment:
  7. - GUACD_HOSTNAME=guacd
  8. - MYSQL_HOSTNAME=guacdb
  9. - MYSQL_DATABASE=guacamole_db
  10. - MYSQL_PASSWORD=$NCMYSQL_PASS
  11. - MYSQL_USER=guacamole_user
  12. image: guacamole/guacamole:latest
  13. links:
  14. - guacd
  15. - guacdb
  16. networks:
  17. - guacnetwork
  18. - proxy
  19. ports:
  20. - 8087:8080
  21. labels:
  22. - "traefik.enable=true"
  23. - traefik.http.routers.guacamole.entrypoints=websecure
  24. - traefik.http.routers.guacamole.middlewares=chain-guacamole@file
  25. restart: unless-stopped
Add Comment
Please, Sign In to add comment