portainer and traefik ansible playbooks

This commit is contained in:
Christian
2022-03-11 16:53:17 +01:00
parent ebab652abf
commit 356872bbc5
2 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
---
- hosts: all
become: yes
become_user: "{{ lookup('env','USER') }}"
tasks:
# Create Portainer Volume
# --
#
- name: Create new Volume
community.docker.docker_volume:
name: portainer-data
# Deploy Portainer
# --
#
- name: Deploy Portainer
community.docker.docker_container:
name: portainer
image: "docker.io/portainer/portainer-ce"
ports:
- "9443:9443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- portainer-data:/data
restart_policy: always