You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.1 KiB
YAML

3 years ago
# 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.
---
version: "2.1"
services:
ubooquity:
image: ghcr.io/linuxserver/ubooquity
container_name: ubooquity
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=Europe/Amsterdam
# To set the maximum memory. ( ex: set '1024' for 1GB )
- MAXMEM=<maxmem>
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