File tree 4 files changed +14
-7
lines changed
Filter options
4 files changed +14
-7
lines changed
Original file line number Diff line number Diff line change @@ -70,8 +70,8 @@ Networking changed in Docker v1.9, so you need to do one of the following steps.
70
70
``` bash
71
71
docker run -d --link bookstack_db_:mysql \
72
72
-p 8080:8080 \
73
- --name bookstack_24.12.1 \
74
- solidnerd/bookstack:24.12.1
73
+ --name bookstack_25.2.0 \
74
+ solidnerd/bookstack:25.2.0
75
75
```
76
76
77
77
### Docker 1.9+
@@ -104,8 +104,8 @@ Networking changed in Docker v1.9, so you need to do one of the following steps.
104
104
-e DB_PASSWORD=secret \
105
105
-e APP_URL=http://example.com \
106
106
-p 8080:8080 \
107
- --name=" bookstack_24.12.1 " \
108
- solidnerd/bookstack:24.12.1
107
+ --name=" bookstack_25.2.0 " \
108
+ solidnerd/bookstack:25.2.0
109
109
```
110
110
111
111
The APP_URL parameter should be the base URL for your BookStack instance without
Original file line number Diff line number Diff line change 1
- 24.12.1
1
+ 25.2.0
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ services:
11
11
- mysql-data:/var/lib/mysql
12
12
13
13
bookstack :
14
- image : solidnerd/bookstack:24.12.1
14
+ image : solidnerd/bookstack:25.2.0
15
15
depends_on :
16
16
- mysql
17
17
environment :
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ echo "Extracted version: ${BOOKSTACK_VERSION}"
16
16
# Remove the 'v' for our tags
17
17
BOOKSTACK_VERSION=" ${BOOKSTACK_VERSION/# v/ } "
18
18
# Remove leading zeros to make the version fit a SemVer-shaped hole
19
- BOOKSTACK_VERSION=" ${BOOKSTACK_VERSION// .0? / .} "
19
+ BOOKSTACK_VERSION=" ${BOOKSTACK_VERSION/ .0 / .} "
20
20
21
21
# If the version only has one decimal dot in it, it doesn't have a patch
22
22
# version and one should be added to ensure semver-shape.
27
27
28
28
echo " Tag name: ${BOOKSTACK_VERSION} "
29
29
30
+ read -p " Is the tag name correct? (y/n)" -n 1 -r
31
+ echo
32
+ if ! [[ " ${REPLY} " =~ ^[Yy]$ ]]; then
33
+ echo " Aborting.."
34
+ exit 1
35
+ fi
36
+
30
37
git tag -s -a " ${BOOKSTACK_VERSION} " -m " Release version ${BOOKSTACK_VERSION} "
31
38
git push --tags
32
39
You can’t perform that action at this time.
0 commit comments