mirror of
https://github.com/davestephens/ansible-nas
synced 2024-12-26 19:43:11 +00:00
24 lines
938 B
YAML
24 lines
938 B
YAML
---
|
|
- name: Create Glances Docker Container
|
|
docker_container:
|
|
name: glances
|
|
image: nicolargo/glances
|
|
pull: true
|
|
volumes:
|
|
#- "/glances.conf:/glances/conf/glances.conf"
|
|
- "/var/run/docker.sock:/var/run/docker.sock:ro"
|
|
- "/etc/timezone:/etc/timezone:ro"
|
|
pid_mode: host
|
|
ports:
|
|
- "{{ glances_port_one }}:61208"
|
|
- "{{ glances_port_two }}:61209"
|
|
env:
|
|
GLANCES_OPT: "-w"
|
|
restart_policy: unless-stopped
|
|
labels:
|
|
traefik.enable: "{{ glances_available_externally }}"
|
|
traefik.http.routers.glances.rule: "Host(`{{ glances_hostname }}.{{ ansible_nas_domain }}`)"
|
|
traefik.http.routers.glances.tls.certresolver: "letsencrypt"
|
|
traefik.http.routers.glances.tls.domains[0].main: "{{ ansible_nas_domain }}"
|
|
traefik.http.routers.glances.tls.domains[0].sans: "*.{{ ansible_nas_domain }}"
|
|
traefik.http.services.glances.loadbalancer.server.port: "61208"
|