From 3c5fab4d3164097aa8b45b734f7f7cf2b5d6eaf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20PIREZ?= Date: Mon, 12 Apr 2021 16:22:33 +0800 Subject: [PATCH] Fixing docker parameters order --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c37ee3a..ef526a4 100644 --- a/README.md +++ b/README.md @@ -83,8 +83,8 @@ docker run --rm -p 8080:8080 \ -v /path/to/vault:/vaults/vault \ -v /path/to/differentVault:/vaults/differentVault \ -v /path/to/fileWithPassword:/passwordFile \ - --bind 0.0.0.0 --port 8080 \ cryptomator/cli \ + --bind 0.0.0.0 --port 8080 \ --vault demoVault=/vaults/vault --password demoVault=topSecret \ --vault otherVault=/vaults/differentVault --passwordfile otherVault=/passwordFile # you can now mount http://localhost:8080/demoVault/ @@ -97,8 +97,8 @@ docker run --rm --network=host \ -v /path/to/vault:/vaults/vault \ -v /path/to/differentVault:/vaults/differentVault \ -v /path/to/fileWithPassword:/passwordFile \ - --bind 127.0.0.1 --port 8080 \ cryptomator/cli \ + --bind 127.0.0.1 --port 8080 \ --vault demoVault=/vaults/vault --password demoVault=topSecret \ --vault otherVault=/vaults/differentVault --passwordfile otherVault=/passwordFile # you can now mount http://localhost:8080/demoVault/