Skip to content

Commit d7279b2

Browse files
committed
1.10.0pre
1 parent d93eee7 commit d7279b2

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### Changed
44
- Changed Base Image to nfrastack/nginx-php-fpm
5-
- BookStack 2025.11
5+
- BookStack 2025.11.1
66

77
## 1.9.43 2025-09-23 <dave at tiredofit dot ca>
88

Containerfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ LABEL \
1717
org.opencontainers.image.licenses="MIT"
1818

1919
ARG \
20-
BOOKSTACK_VERSION="v25.11" \
20+
BOOKSTACK_VERSION="v25.11.1" \
2121
BOOKSTACK_REPO_URL="https://github.com/BookStackApp/BookStack"
2222

2323
COPY CHANGELOG.md /usr/src/container/CHANGELOG.md
@@ -41,6 +41,10 @@ ENV \
4141
IMAGE_REPO_URL="https://github.com/nfrastack/container-bookstack/"
4242

4343
RUN echo "" && \
44+
BOOKSTACK_BUILD_DEPS_ALPINE=" \
45+
git \
46+
" \
47+
&& \
4448
BOOKSTACK_RUN_DEPS_ALPINE=" \
4549
fontconfig \
4650
git \
@@ -54,6 +58,7 @@ RUN echo "" && \
5458
package update && \
5559
package upgrade && \
5660
package install \
61+
BOOKSTACK_BUILD_DEPS \
5762
BOOKSTACK_RUN_DEPS \
5863
&& \
5964
php-ext prepare && \
@@ -73,6 +78,7 @@ RUN echo "" && \
7378
&& \
7479
container_build_log add "BookStack ${BOOKSTACK_VERSION}" "${BOOKSTACK_REPO_URL}" && \
7580
\
81+
package remove BOOKSTACK_BUILD_DEPS && \
7682
package cleanup
7783

7884
COPY rootfs /

examples/compose.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
- traefik.http.services.bookstack.loadbalancer.server.port=80
99
volumes:
1010
- ./data:/data
11-
- ./logs:/www/logs/
11+
- ./logs:/logs/
1212
environment:
1313
- CONTAINER_NAME=bookstack-app
1414

@@ -25,10 +25,10 @@ services:
2525
restart: always
2626

2727
bookstack-db:
28-
image: docker.io/tiredofit/mariadb
28+
image: docker.io/nfrastack/mariadb:11.8
2929
container_name: bookstack-db
3030
volumes:
31-
- ./db:/var/lib/mysql
31+
- ./db:/data
3232
environment:
3333
- ROOT_PASS=password
3434
- DB_NAME=bookstack
@@ -46,15 +46,14 @@ services:
4646
volumes:
4747
- ./dbbackup:/backup
4848
environment:
49-
- CONTAINER_NAME=bookstack-db-backup
5049
- DB01_HOST=bookstack-db
5150
- DB01_TYPE=mariadb
5251
- DB01_NAME=bookstack
5352
- DB01_USER=bookstack
5453
- DB01_PASS=bookstackpass
5554
- DB01_BACKUP_INTERVAL=1440
5655
- DB01_BACKUP_BEGIN=0000
57-
- DB_CLEANUP_TIME=8640
56+
- DB01_CLEANUP_TIME=8640
5857
networks:
5958
- services
6059
restart: always

0 commit comments

Comments
 (0)