From a33f6d4f49deb687d7584663f38fcae644db8123 Mon Sep 17 00:00:00 2001 From: Matthew McKinnon Date: Sat, 22 Feb 2025 10:39:27 +1000 Subject: [PATCH] chore: remove guacamole --- tasks/guacamole.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 tasks/guacamole.yml diff --git a/tasks/guacamole.yml b/tasks/guacamole.yml deleted file mode 100644 index 2f6b697..0000000 --- a/tasks/guacamole.yml +++ /dev/null @@ -1,36 +0,0 @@ ---- -- name: Create the guacd container - docker_container: - name: guacd - image: guacamole/guacd:1.5.5 - restart_policy: unless-stopped - recreate: true - networks: - - name: proxy - -- name: Create the guacamole container - docker_container: - name: guacamole - image: guacamole/guacamole:1.5.5 - restart_policy: unless-stopped - recreate: true - networks: - - name: proxy - env: - MYSQL_DATABASE: "{{ GUAC_DB }}" - MYSQL_HOSTNAME: "{{ MYSQL_HOST }}" - MYSQL_USER: "{{ GUAC_USER }}" - MYSQL_PASSWORD: "{{ GUAC_DB_PASS }}" - GUACD_HOSTNAME: guacd - labels: - traefik.enable: "true" - traefik.http.routers.guacamole.rule: "Host(`remote.comprofix.xyz`)" - traefik.http.routers.guacamole.entrypoints: "https" - traefik.http.routers.guacamole.tls: "true" - traefik.http.services.guacamole.loadbalancer.server.port: "8080" - traefik.http.services.guacamole.loadbalancer.server.scheme: "http" - - - - -