You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 lines
323 B

- name: Portainer Data Dir
become: true
file:
path: /data
state: directory
- name: Install Portainer Container
docker_container:
name: portainer
image: portainer/portainer-ce:linux-arm
ports:
- "9000:9000"
restart_policy: always
volumes:
- portainer_data:/data
become: true