15 lines
355 B
YAML
15 lines
355 B
YAML
- name: Portainer - Docker Container Setup
|
|
become: true
|
|
community.docker.docker_container:
|
|
name: portainer
|
|
image: portainer/portainer-ce
|
|
state: started
|
|
restart_policy: unless-stopped
|
|
pull: yes
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- portainer:/data
|
|
ports:
|
|
- "9443:9443"
|
|
- "8000:8000"
|