From: luandro Date: Sat, 29 Oct 2022 14:36:41 +0000 (-0300) Subject: Fix Docker example on README X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=a672130fcbbcc75c1ae8e90d09677db110eccc4c;p=flatnotes.git Fix Docker example on README --- diff --git a/README.md b/README.md index 7ba3956..1daf40a 100644 --- a/README.md +++ b/README.md @@ -28,9 +28,9 @@ Note: To use either of the options below, please ensure the current directory co ```shell docker run -d \ - -e "FLATNOTES_AUTH_TYPE=password" - -e "FLATNOTES_USERNAME=user" \ - -e "FLATNOTES_PASSWORD=changeMe!" \ + -e "FLATNOTES_AUTH_TYPE=password" \ + -e "FLATNOTES_USERNAME=admin" \ + -e "FLATNOTES_PASSWORD=admin" \ -e "FLATNOTES_SECRET_KEY=aLongRandomSeriesOfCharacters" \ -v "$(pwd)/data:/app/data" \ -p "80:80" \