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

View File

@ -0,0 +1,46 @@
---
- hosts: all
become: yes
tasks:
# Create Directory
# ---
#
# - name: Create directory
# file:
# path: /etc/traefik
# state: directory
# Create Directory
# ---
#
# - name: Create directory2
# file:
# path: /etc/traefik/certs
# state: directory
# Copy File
# ---
#
# - name: Copy config file
# ansible.builtin.copy:
# src: config/traefik.yaml
# dest: /etc/traefik/traefik.yaml
# Deploy Traefik
# --
#
- 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: always