add dashdot

authelia
chatton 2 years ago
parent 6392473195
commit e16c8cc34a

@ -67,6 +67,8 @@
roles: roles:
- role: portainer_bookstack - role: portainer_bookstack
- role: portainer_vaultwarden - role: portainer_vaultwarden
- role: portainer_dashy
- role: portainer_dashdot
- name: Setup and deploy portainer services (qnap). - name: Setup and deploy portainer services (qnap).
hosts: qnap hosts: qnap
@ -78,6 +80,7 @@
tags: [always] tags: [always]
roles: roles:
- role: portainer_dashy - role: portainer_dashy
- role: portainer_dashdot
# #
#- name: Setup and deploy templated portainer services. #- name: Setup and deploy templated portainer services.

@ -0,0 +1,7 @@
---
dashdot_image: mauricenino/dashdot
dashdot_tag: latest
dashdot_expose_port: 3010
dashdot_portainer_stack_name: dashdot
dashdot_container_name: dashdot
dashdot_restart_policy: unless-stopped

@ -0,0 +1,20 @@
---
- name: "Dashy | Update Portainer."
chatton.portainer.portainer_stack:
username: admin
password: '{{ portainer.password }}'
base_url: '{{ portainer_base_url }}'
stack_name: '{{ dashdot_portainer_stack_name }}'
endpoint_id: '{{ portainer_endpoint }}'
state: present
definition:
services:
dashdot:
container_name: "{{ dashdot_container_name}}"
image: "{{ dashdot_image }}:{{ dashdot_tag }}"
restart: "{{ dashdot_restart_policy }}"
privileged: true
ports:
- '{{ dashdot_expose_port }}:3001'
volumes:
- /:/mnt/host:ro
Loading…
Cancel
Save