From 2a2f99dd768ff72f62088fce95db198987e71666 Mon Sep 17 00:00:00 2001 From: Florian Walther Date: Sun, 8 Feb 2026 23:18:42 +0100 Subject: [PATCH] updated build instructions --- misc/MoreUsage.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/misc/MoreUsage.md b/misc/MoreUsage.md index facc5be..1d5ccec 100644 --- a/misc/MoreUsage.md +++ b/misc/MoreUsage.md @@ -28,18 +28,20 @@ you can build the app yourself like this: go build -o password-generator ./ ``` +NOTE: If you build the app manually in go, like shown in this example, it will probably not run, since it misses a writeable `/data` directory. # build a docker container ``` -docker build -t password-generator . +docker build -t web-password:dev . + ``` # start the docker container ``` -docker run -p 8080:8080 password-generator +docker run -p 8080:8080 -v app_data:/data web-password:dev ``` ## docker-compose