initial deployment
This commit is contained in:
26
ansible/provisoning/deploy-portainer.yaml
Normal file
26
ansible/provisoning/deploy-portainer.yaml
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
- hosts: all
|
||||
|
||||
tasks:
|
||||
|
||||
# Create Portainer Volume
|
||||
# --
|
||||
#
|
||||
- name: Create new Volume
|
||||
community.docker.docker_volume:
|
||||
name: portainer_data
|
||||
|
||||
# Deploy Portainer
|
||||
# --
|
||||
#
|
||||
- name: Deploy Portainer
|
||||
community.docker.docker_container:
|
||||
container_name: portainer
|
||||
image: "docker.io/portainer/portainer-ce"
|
||||
ports:
|
||||
- "8000:8000"
|
||||
- "9000:9000"
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- portainer_data:/data
|
||||
restart_policy: always
|
||||
Reference in New Issue
Block a user