2021-04-21 00:55:42 +00:00
|
|
|
# [Ubooquity](https://vaemendis.net/ubooquity/) is a free, lightweight and easy-
|
|
|
|
# to-use home server for your comics and ebooks. Use it to access your files
|
|
|
|
# from anywhere, with a tablet, an e-reader, a phone or a computer.
|
2021-04-10 10:16:29 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
version: "2.1"
|
|
|
|
services:
|
|
|
|
ubooquity:
|
|
|
|
image: ghcr.io/linuxserver/ubooquity
|
|
|
|
container_name: ubooquity
|
|
|
|
environment:
|
|
|
|
# for UserID
|
2022-04-02 00:45:58 +00:00
|
|
|
- PUID=${PUID:-1024}
|
|
|
|
# for GroupID
|
2021-04-10 10:16:29 +00:00
|
|
|
- PGID=${PGID:-100}
|
2023-02-12 01:01:09 +00:00
|
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
2021-04-13 00:58:58 +00:00
|
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
2021-04-10 10:16:29 +00:00
|
|
|
# To set the maximum memory. ( ex: set '1024' for 1GB )
|
2023-03-11 00:53:14 +00:00
|
|
|
- MAXMEM=
|
2021-04-10 10:16:29 +00:00
|
|
|
volumes:
|
|
|
|
# Config files and database for ubooquity.
|
|
|
|
- ${BASEDIR:-/volume1/docker}/ubooquity/config:/config
|
|
|
|
# Location of books.
|
|
|
|
- ${BASEDIR:-/volume1/docker}/ubooquity/books:/books
|
|
|
|
# Location of comics.
|
|
|
|
- ${BASEDIR:-/volume1/docker}/ubooquity/comics:/comics
|
|
|
|
# Location of raw files.
|
|
|
|
- ${BASEDIR:-/volume1/docker}/ubooquity/files:/files
|
|
|
|
ports:
|
|
|
|
# The library port.
|
|
|
|
- 2202:2202
|
|
|
|
# The admin port.
|
|
|
|
- 2203:2203
|
|
|
|
restart: unless-stopped
|