2024-04-08 18:28:36 +02:00
|
|
|
---
|
|
|
|
- name: shinyproxy_docker_stack_service | Manage the docker stack
|
|
|
|
tags: ['shinyproxy', 'shinyproxy_swarm', 'docker']
|
|
|
|
run_once: true
|
|
|
|
block:
|
|
|
|
- name: shinyproxy_docker_stack_service | Create the directory where the dockerfile and the configuration file will be copied into
|
|
|
|
ansible.builtin.file:
|
|
|
|
dest: "{{ shinyproxy_as_docker_src_dir }}"
|
|
|
|
state: directory
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: "0700"
|
|
|
|
|
|
|
|
- name: shinyproxy_docker_stack_service | Install the docker compose file
|
|
|
|
ansible.builtin.template:
|
|
|
|
src: shinyproxy-docker-compose.yml.j2
|
|
|
|
dest: "{{ shinyproxy_as_docker_src_dir }}/docker-shinyproxy-stack.yml"
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: "0400"
|
|
|
|
|
|
|
|
- name: shinyproxy_docker_stack_service | Install the shinyproxy configuration file
|
|
|
|
ansible.builtin.template:
|
2024-04-09 13:18:04 +02:00
|
|
|
src: shinyproxy-conf.yml.j2
|
2024-04-08 18:28:36 +02:00
|
|
|
dest: "{{ shinyproxy_as_docker_src_dir }}/application.yml"
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: "0400"
|
2024-04-09 17:02:07 +02:00
|
|
|
notify:
|
|
|
|
- Stop the shinyproxy service
|
|
|
|
- Create the secret for the application.yml file
|
2024-04-08 18:28:36 +02:00
|
|
|
|
2024-04-09 17:04:14 +02:00
|
|
|
- name: shinyproxy_docker_stack_service | Flush the handlers so that we can manage the configuration file as a secret
|
2024-04-09 17:05:59 +02:00
|
|
|
ansible.builtin.meta: flush_handlers
|
2024-04-09 17:04:14 +02:00
|
|
|
|
2024-04-08 18:28:36 +02:00
|
|
|
- name: shinyproxy_docker_stack_service | Start the shinyproxy stack
|
|
|
|
community.docker.docker_stack:
|
|
|
|
name: '{{ shinyproxy_as_docker_stack_name }}'
|
|
|
|
state: present
|
|
|
|
compose:
|
|
|
|
- '{{ shinyproxy_as_docker_src_dir }}/docker-shinyproxy-stack.yml'
|