From 43dca4d1867361ebd52fb0abe2d04cfc3594ccbb Mon Sep 17 00:00:00 2001 From: Jeremy Bolster Date: Thu, 9 Feb 2017 21:15:24 -0800 Subject: [PATCH 1/2] Fixed the docker script Added a '\' to a line in the docker script. Added default login credentials to the information after the docker script. Changed confusing wording under inspiration. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 437f5c00..53d79b39 100644 --- a/README.md +++ b/README.md @@ -56,13 +56,13 @@ docker run -d --net bookstack_nw \ -e DB_DATABASE=bookstack \ -e DB_USERNAME=bookstack \ -e DB_PASSWORD=secret \ --p 8080:80 +-p 8080:80 \ solidnerd/bookstack:0.13.1 ``` -After the steps you can visit [http://localhost:8080](http://localhost:8080) . +After the steps you can visit [http://localhost:8080](http://localhost:8080) . You can login with username 'bookstack' and password 'secret'. ## Inspiration -It comes from [Kilhog/docker-bookstack](https://github.com/Kilhog/docker-bookstack). He did the initially work it was a fork previously but know i want to go in a other direction. +This is a fork of [Kilhog/docker-bookstack](https://github.com/Kilhog/docker-bookstack). Kilhog did the intial work, but I want to go in a different direction. From 77fc085c44cd46539aba49ab3f1cb2c01b21959e Mon Sep 17 00:00:00 2001 From: Jeremy Bolster Date: Thu, 9 Feb 2017 21:18:33 -0800 Subject: [PATCH 2/2] Login Credentials I put the wrong default credentials before. It is fixed now. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 53d79b39..79caaee3 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ docker run -d --net bookstack_nw \ solidnerd/bookstack:0.13.1 ``` -After the steps you can visit [http://localhost:8080](http://localhost:8080) . You can login with username 'bookstack' and password 'secret'. +After the steps you can visit [http://localhost:8080](http://localhost:8080) . You can login with username 'admin@admin.com' and password 'password'. ## Inspiration