Update docker run command to use bind mount instead of volume

This commit is contained in:
jowj 2018-11-15 14:00:53 -06:00
parent 2e26d1eef5
commit 64e40efdb3

View File

@ -27,5 +27,5 @@
shell: docker container rm znc
when: result is succeeded
- name: run the container (assumes the volume is already set up)
command: docker run -d -p 5000:5000 -v znc-cfg:/znc-data znc
command: docker run -d -p 5000:5000 --mount type="bind",source="/mnt/volume_sfo2_znc/",target=/znc-data znc