mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-25 09:44:24 +01:00
38e065c218
The use of `/var/run` was deprecated by FHS 3.0 nine years ago, so it's time to finally get rid of it where possible. The canonical directory for run-time variable data is `/run` nowadaya,s with `/var/run` just being a symbolic link for backward compatibilty and to ease transition.
19 lines
461 B
YAML
19 lines
461 B
YAML
---
|
|
- name: Deploy traefik v2.5
|
|
hosts: "{{ my_hosts | d([]) }}"
|
|
|
|
tasks:
|
|
- name: Deploy traefik
|
|
community.docker.docker_container:
|
|
name: traefik
|
|
image: "traefik:v2.5"
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- /run/docker.sock:/run/docker.sock
|
|
- /etc/traefik:/etc/traefik
|
|
restart_policy: unless-stopped
|
|
become: true
|
|
become_user: "{{ lookup('env', 'USER') }}"
|