You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ The architectures supported by this image are:
64
64
65
65
The default username is [email protected] with the password of **password**, access the container at http://<hostip>:6875.
66
66
67
-
This application is dependent on a MySQL database be it one you already have or a new one. If you do not already have one, set up our MariaDB container here https://hub.docker.com/r/linuxserver/mariadb/.
67
+
This application is dependent on a MariaDB database, be it one you already have or a new one. If you do not already have one, we provide an image here https://github.com/linuxserver/docker-mariadb.
68
68
69
69
If you intend to use this application behind a subfolder reverse proxy, such as our SWAG container or Traefik you will need to make sure that the `APP_URL` environment variable is set to your external domain, or it will not work.
### Advanced Users (full control over the .env file)
97
97
98
-
If you wish to use the extra functionality of BookStack such as email, Memcache, LDAP and so on you will need to make your own .env file with guidance from the BookStack documentation.
98
+
If you wish to use the extra functionality of BookStack such as email, LDAP and so on you will need to set additional environment variables or make your own .env file with guidance from the BookStack documentation.
99
99
100
-
When you create the container, do not set any arguments for any SQL settings. The container will copy an exemplary .env file to /config/www/.env on your host system for you to edit.
100
+
The container will copy an exemplary .env file to /config/www/.env on your host system for you to use.
101
101
102
102
103
103
## Usage
@@ -159,14 +159,14 @@ Containers are configured using parameters passed at runtime (such as those abov
159
159
160
160
| Parameter | Function |
161
161
| :----: | --- |
162
-
|`-p 80`|will map the container's port 80 to port 6875 on the host|
162
+
|`-p 80`|http/s web interface.|
163
163
|`-e PUID=1000`| for UserID - see below for explanation |
164
164
|`-e PGID=1000`| for GroupID - see below for explanation |
165
165
|`-e TZ=Etc/UTC`| specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
166
-
|`-e APP_URL=`| The IP:port or URL your application will be accessed on (ie. `http://192.168.1.1:6875` or `https://bookstack.mydomain.com`|
167
-
|`-e APP_KEY=`| Session encryption key. Can be generated with `docker run -it --rm --entrypoint /bin/bash lscr.io/linuxserver/bookstack:latest appkey`|
166
+
|`-e APP_URL=`| The protocol, IP/URL, and port that your application will be accessed on (ie. `http://192.168.1.1:6875` or `https://bookstack.mydomain.com`|
167
+
|`-e APP_KEY=`| Session encryption key. You will need to generate this with `docker run -it --rm --entrypoint /bin/bash lscr.io/linuxserver/bookstack:latest appkey`|
168
168
|`-e DB_HOST=`| The database instance hostname |
169
-
|`-e DB_PORT=3306`| Database port (default `3306`) |
169
+
|`-e DB_PORT=3306`| Database port |
170
170
|`-e DB_USERNAME=`| Database user |
171
171
|`-e DB_PASSWORD=`| Database password (minimum 4 characters & non-alphanumeric passwords must be properly escaped.) |
- { env_var: "APP_URL", env_value: "", desc: "The IP:port or URL your application will be accessed on (ie. `http://192.168.1.1:6875` or `https://bookstack.mydomain.com`"}
28
-
- { env_var: "APP_KEY", env_value: "", desc: "Session encryption key. Can be generated with `docker run -it --rm --entrypoint /bin/bash lscr.io/linuxserver/bookstack:latest appkey`"}
27
+
- { env_var: "APP_URL", env_value: "", desc: "The protocol, IP/URL, and port that your application will be accessed on (ie. `http://192.168.1.1:6875` or `https://bookstack.mydomain.com`"}
28
+
- { env_var: "APP_KEY", env_value: "", desc: "Session encryption key. You will need to generate this with `docker run -it --rm --entrypoint /bin/bash lscr.io/linuxserver/bookstack:latest appkey`"}
The default username is [email protected] with the password of **password**, access the container at http://<host ip>:6875.
48
48
49
-
This application is dependent on a MySQL database be it one you already have or a new one. If you do not already have one, set up our MariaDB container here https://hub.docker.com/r/linuxserver/mariadb/.
49
+
This application is dependent on a MariaDB database, be it one you already have or a new one. If you do not already have one, we provide an image here https://github.com/linuxserver/docker-mariadb.
50
50
51
51
If you intend to use this application behind a subfolder reverse proxy, such as our SWAG container or Traefik you will need to make sure that the `APP_URL` environment variable is set to your external domain, or it will not work.
52
52
@@ -77,9 +77,9 @@ app_setup_block: |
77
77
78
78
### Advanced Users (full control over the .env file)
79
79
80
-
If you wish to use the extra functionality of BookStack such as email, Memcache, LDAP and so on you will need to make your own .env file with guidance from the BookStack documentation.
80
+
If you wish to use the extra functionality of BookStack such as email, LDAP and so on you will need to set additional environment variables or make your own .env file with guidance from the BookStack documentation.
81
81
82
-
When you create the container, do not set any arguments for any SQL settings. The container will copy an exemplary .env file to /config/www/.env on your host system for you to edit.
82
+
The container will copy an exemplary .env file to /config/www/.env on your host system for you to use.
0 commit comments