Browse Source

fix docker command for zfile v4.0.0

Stille 3 years ago
parent
commit
0d951f68c4
2 changed files with 2 additions and 2 deletions
  1. 1 1
      zfile/README.md
  2. 1 1
      zfile/docker-compose.yml

+ 1 - 1
zfile/README.md

@@ -26,7 +26,7 @@ docker run -d \
     --name=zfile \
     --restart=always \
     -p 8080:8080 \
-    -v /root/zfile/conf:/root/.zfile \
+    -v /root/zfile/conf:/root/.zfile-v4 \
     -v /root/zfile/data:/root/zfile/data \
     stilleshan/zfile
 ```

+ 1 - 1
zfile/docker-compose.yml

@@ -6,7 +6,7 @@ services:
     ports:
       - 8080:8080
     volumes:
-      - ./conf:/root/.zfile
+      - ./conf:/root/.zfile-v4
       - ./data:/root/zfile/data
     restart: always