File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -34,12 +34,15 @@ docker run -d --name bookstack-mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=secret
3434docker run --name my-bookstack -d --link bookstack-mysql:mysql -p 8080:80 solidnerd/bookstack:0.17.1
3535```
3636
37- ### #Docker 1.9+
38- 1 . Create a shared network:
37+ ### Docker 1.9+
38+
39+ 1.Create a shared network:
40+
3941``` bash
4042docker network create bookstack_nw`
4143` ` `
42- 2. MySQL container :
44+
45+ 2.MySQL container :
4346` ` ` bash
4447docker run -d --net bookstack_nw \
4548-e MYSQL_ROOT_PASSWORD=secret \
@@ -50,7 +53,9 @@ docker run -d --net bookstack_nw \
5053 mysql
5154` ` `
5255
53- 3. Create BookStack Container
56+
57+ 3.Create BookStack Container
58+
5459` ` ` bash
5560docker run -d --net bookstack_nw \
5661-e DB_HOST=bookstack_db:3306 \
You can’t perform that action at this time.
0 commit comments