ansible-nas/tasks/guacamole.yml

52 lines
1.2 KiB
YAML
Raw Normal View History

---
- name: Create Guacamole directories
file:
path: "{{ item }}"
state: directory
with_items:
2020-01-25 00:24:00 +00:00
- "{{ guacamole_data_directory }}/config"
2020-01-25 00:24:00 +00:00
- name: Remove Old Guacamole Mysql Docker Container
docker_container:
name: guacamole-mysql
2020-01-25 00:24:00 +00:00
state: absent
keep_volumes: true
2020-01-25 00:24:00 +00:00
- name: Remove Old Guacamole guacd Docker Container
docker_container:
name: guacamole-guacd
2020-01-25 00:24:00 +00:00
state: absent
keep_volumes: true
- name: Remove old Guacamole directories
file:
path: "{{ item }}"
state: absent
with_items:
- "{{ guacamole_data_directory }}/mysql"
# docker run -v /home/david/.guac:/config:rw -p 8080:8080 oznu/guacamole
2020-01-25 00:24:00 +00:00
- name: Guacamole Container
docker_container:
name: guacamole
2020-01-25 00:24:00 +00:00
image: "oznu/guacamole"
pull: true
2020-01-25 00:24:00 +00:00
volumes:
- "{{ guacamole_data_directory }}/config:/config:rw"
ports:
- "{{ guacamole_port }}:8080"
restart_policy: unless-stopped
memory: 1g
2018-11-25 11:07:44 +00:00
labels:
traefik.backend: "guacamole"
traefik.frontend.rule: "Host:guacamole.{{ ansible_nas_domain }}"
traefik.enable: "{{ guacamole_available_externally }}"
2020-01-25 00:24:00 +00:00
traefik.port: "8080"
- name: Restart Guacamole Container
docker_container:
name: guacamole
image: "oznu/guacamole"
restart: true