christianlempa-boilerplates/ansible/traefik/deploy-traefik.yaml
2024-12-18 14:19:23 +01:00

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') }}"