mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-18 15:25:41 +00:00
35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
# 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=${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
|