Calibre-Web

Just another WordPress site

Calibre-Web

In or last two articles we announced the move from ubooquity to two other GUI’s to handle comics and books on our server. This article is about handling the books. As we already use Calibre, it was not such a big leap to Calibre-Web, as this is considered the GUI for Calibre. Just as with Komga, we liked the GUI very much, and the way it is presented. We also hooked it up with nginx, to make it more secure outside our network.

version: "2.1"
services:
  calibre-web:
    image: lscr.io/linuxserver/calibre-web
    container_name: Calibre-Web
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Amsterdam
      - DOCKER_MODS=linuxserver/calibre-web:calibre #optional
      - OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional
      - PORT=8083
      - ROOT_URL=####{domain name}####
      - VIRTUAL_HOST=####{domain name}####
      - VIRTUAL_PORT=8083
      - LETSENCRYPT_HOST=####{domain name}####
      - LETSENCRYPT_EMAIL=####{email}####
    networks:
      - nginx-proxy
    volumes:
      - /mnt/docker-compose-files/calibre-web/config:/config
      - /mnt/media/books:/books
    ports:
      - 8083:8083
    restart: unless-stopped

networks:
  nginx-proxy:
    external:
      name: proxy_nginx

Hits: 20