From 64e40efdb3503393541d7ec22bcc3b3d16a711d3 Mon Sep 17 00:00:00 2001 From: jowj Date: Thu, 15 Nov 2018 14:00:53 -0600 Subject: [PATCH] Update docker run command to use bind mount instead of volume --- deployments/zncServer/znc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployments/zncServer/znc.yml b/deployments/zncServer/znc.yml index b35a4fd..cbbc3ca 100644 --- a/deployments/zncServer/znc.yml +++ b/deployments/zncServer/znc.yml @@ -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