christianlempa-boilerplates/ansible/deployment/traefik/deploy-traefik.yaml
Christoph Schug 70a8bea0ed fix: add and remove blank lines
Add blank lines where it helps with readability (e.g., between each
task) but also remove needless one.
2024-03-03 16:34:29 +01:00

19 lines
464 B
YAML

---
- name: deploy traefik v2.5
hosts: "{{ my_hosts | d([]) }}"
become: true
tasks:
- name: deploy traefik
become_user: "{{ lookup('env','USER') }}"
community.docker.docker_container:
name: traefik
image: "traefik:v2.5"
ports:
- "80:80"
- "443:443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /etc/traefik:/etc/traefik
restart_policy: unless-stopped