From a5e7da370f81e1e59f41966779b7235bb7bc8aa0 Mon Sep 17 00:00:00 2001 From: hedger Date: Mon, 16 Dec 2024 17:53:19 +0400 Subject: [PATCH] Fixed out path for initial issue to match docker-compose --- deploy-to-docker-containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy-to-docker-containers.md b/deploy-to-docker-containers.md index 693fe4e..03433b8 100644 --- a/deploy-to-docker-containers.md +++ b/deploy-to-docker-containers.md @@ -57,7 +57,7 @@ Let's run acme.sh as a daemon, a difference with the above link is that we mount ```sh docker run --rm -itd \ - -v "$(pwd)/out":/acme.sh \ + -v "$(pwd)/acmeout":/acme.sh \ --net=host \ --name=acme.sh \ -v /var/run/docker.sock:/var/run/docker.sock \