mistake in the docker command for volumes

This commit is contained in:
Rostislav Raykov
2024-11-30 22:03:58 +02:00
parent 444cba8c25
commit 2dd5c8f41b

View File

@@ -56,7 +56,7 @@ Optional: Use volumes to persist the uploaded files:
docker run -d -p 8080:8080 \
-v /path/to/db:/app/db \
-v /path/to/log:/app/log \
-v /path/to/files:/files \
-v /path/to/files:/app/files \
quickdrop
```