Compare commits

...

2 Commits

Author SHA1 Message Date
d4b6efe748 chore: remove guacamole
All checks were successful
Deploy / Prepare Build (push) Successful in 34s
2025-02-22 10:40:06 +10:00
a33f6d4f49 chore: remove guacamole 2025-02-22 10:39:27 +10:00
2 changed files with 0 additions and 40 deletions

View File

@ -89,10 +89,6 @@
import_tasks: tasks/invoiceninja.yml
tags: invoiceninja_install
- name: Deploy Guacamole
import_tasks: tasks/guacamole.yml
tags: guacamole_install
- name: Deploy Homepage
import_tasks: tasks/homepage.yml
tags: homepage_install

View File

@ -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"