Warning
Deprecated — This image is no longer actively maintained or built.
Reason: Upstream development has stopped and the repository has been deleted.
Self-hosted digital library with smart shelves, metadata, OPDS support, and built-in reader.
| Registry | ghcr.io/daemonless/booklore |
| Source | https://github.com/booklore-app/booklore |
| Website | https://booklore.org/ |
| Tag | Description | Best For |
|---|---|---|
latest |
Upstream Binary. Built from official release. | Most users. Matches Linux Docker behavior. |
Before deploying, ensure your host environment is ready. See the Quick Start Guide for host setup instructions.
services:
booklore:
image: ghcr.io/daemonless/booklore:latest
container_name: booklore
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- SPRING_DATASOURCE_URL=jdbc:mariadb://127.0.0.1:3306/booklore
- SPRING_DATASOURCE_USERNAME=booklore
- SPRING_DATASOURCE_PASSWORD=changeme
volumes:
- "/path/to/containers/booklore/app/data:/app/data"
- "/path/to/books:/books"
- "/path/to/containers/booklore/bookdrop:/bookdrop"
restart: unless-stoppedpodman run -d --name booklore \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-e SPRING_DATASOURCE_URL=jdbc:mariadb://127.0.0.1:3306/booklore \
-e SPRING_DATASOURCE_USERNAME=booklore \
-e SPRING_DATASOURCE_PASSWORD=changeme \
-v /path/to/containers/booklore/app/data:/app/data \
-v /path/to/books:/books \
-v /path/to/containers/booklore/bookdrop:/bookdrop \
ghcr.io/daemonless/booklore:latest- name: Deploy booklore
containers.podman.podman_container:
name: booklore
image: ghcr.io/daemonless/booklore:latest
state: started
restart_policy: always
env:
PUID: "1000"
PGID: "1000"
TZ: "Etc/UTC"
SPRING_DATASOURCE_URL: "jdbc:mariadb://127.0.0.1:3306/booklore"
SPRING_DATASOURCE_USERNAME: "booklore"
SPRING_DATASOURCE_PASSWORD: "changeme"
volumes:
- "/path/to/containers/booklore/app/data:/app/data"
- "/path/to/books:/books"
- "/path/to/containers/booklore/bookdrop:/bookdrop"| Variable | Default | Description |
|---|---|---|
PUID |
1000 |
|
PGID |
1000 |
|
TZ |
Etc/UTC |
|
SPRING_DATASOURCE_URL |
jdbc:mariadb://127.0.0.1:3306/booklore |
MariaDB JDBC URL (e.g., jdbc:mariadb://mariadb:3306/booklore) |
SPRING_DATASOURCE_USERNAME |
booklore |
Database username |
SPRING_DATASOURCE_PASSWORD |
changeme |
Database password |
| Path | Description |
|---|---|
/app/data |
Configuration and application data |
/books |
Book library directory |
/bookdrop |
Drop folder for automatic imports |
This compose uses network_mode: host so services communicate via 127.0.0.1.
For isolated networking (multiple stacks, no port conflicts), use bridge mode with the dnsname CNI plugin:
services:
booklore:
# remove network_mode: host, add ports
ports:
- "6060:6060"
environment:
SPRING_DATASOURCE_URL: "jdbc:mariadb://mariadb:3306/booklore"
mariadb:
# remove network_mode: host
# container name becomes DNS hostnameThis image uses /app/data for application data, matching the official ghcr.io/booklore-app/booklore image. You can migrate from Linux to FreeBSD:
- Stop containers on source host
- Copy
/containers/booklore/(data + mariadb) to destination - Start containers on destination
The MariaDB data format is compatible between Linux and FreeBSD.
Architectures: amd64
User: bsd (UID/GID via PUID/PGID, defaults to 1000:1000)
Base: FreeBSD 15.0
Need help? Join our Discord community.