14 lines
272 B
YAML
14 lines
272 B
YAML
---
|
|
- name: Mount docker volume share
|
|
become: true
|
|
mount:
|
|
src: "{{nfs_server}}:{{nfs_export_path}}"
|
|
path: "{{nfs_mount_path}}"
|
|
opts: rw,_netdev,hard,intr,nolock
|
|
state: mounted
|
|
fstype: nfs
|
|
|
|
|
|
- import_tasks: traefik.yml
|
|
- import_tasks: portainer.yml
|