Title logo
linuxserver/bookstack.

70,356,375 315 amd64 arm64

Build Information

General build information for this image

Docker Hub linuxserver/bookstack
Build Time 22 Apr 2024 18:30:26
Base Image lsiobase/nginx:3.11
Category Media
Synchronised Yes
Stable Yes
Deprecated No

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 24.02.3 22 Apr 2024 at 18:30:26

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  bookstack:
    image: linuxserver/bookstack:24.02.3
    container_name: bookstack
    restart: unless-stopped
    environment:
      - PUID # UID of user to take ownership of application/files
      - PGID # GID of user to take ownership of application/files
      - DB_USER # The database user
      - DB_PASS # The database password
      - DB_HOST # The database host
      - DB_DATABASE # The database to be used
      - APP_URL # The url your application will be accessed on (required for correct operation of reverse proxy)
    volumes:
      - /host/path/to/config:/config # Location of any uploaded data
    ports:
      - 80:80/tcp # Web UI port

CLI

docker create \
  --name=bookstack \
  -e PUID `# UID of user to take ownership of application/files` \
  -e PGID `# GID of user to take ownership of application/files` \
  -e DB_USER `# The database user` \
  -e DB_PASS `# The database password` \
  -e DB_HOST `# The database host` \
  -e DB_DATABASE `# The database to be used` \
  -e APP_URL `# The url your application will be accessed on (required for correct operation of reverse proxy)` \
  -v /host/path/to/config:/config `# Location of any uploaded data` \
  -p 80:80/tcp `# Web UI port` \
  --restart unless-stopped \
  linuxserver/bookstack:24.02.3