I am setting up a new server for my media and wanted to ask for your best ways to manage an ebook and comic collection. I have been using calibre so far, but it is not really designed to be managed remotely.

  • @[email protected]
    link
    fedilink
    English
    7
    edit-2
    7 months ago

    Calibre over Guacamole, Calibreweb, with Openbooks for usenet searching of books.

    spoiler
    ---
    version: "2.1"
    services:
      calibre:
        image: lscr.io/linuxserver/calibre:latest
        container_name: calibre
        environment:
          - PUID=0
          - PGID=0
          - TZ=America/Denver
        security_opt:
          - seccomp=unconfined
        volumes:
          - ./data:/config
        ports:
          - 7080:8080
          - 7081:8081
        restart: unless-stopped
        labels:
          - com.centurylinklabs.watchtower.enable=true
    
      calibre-web:
        image: lscr.io/linuxserver/calibre-web:latest
        container_name: calibre-web
        environment:
          - PUID=0
          - PGID=0
          - TZ=America/Denver
          - DOCKER_MODS=linuxserver/mods:universal-calibre #optional
        volumes:
          - ./data/web-config:/config
          - ./data/:/books
    #      - ./data/Calibre\ Library:/books
        ports:
          - 7083:8083
        restart: unless-stopped
        labels:
          - com.centurylinklabs.watchtower.enable=true
    
      openbooks:
        ports:
          - 7082:80
        volumes:
          - './data/:/books'
        restart: unless-stopped
        container_name: calibre-openbooks
    #    command: --persist
        command: --name fgddfghjasrtrtcgv --persist
        environment:
          - BASE_PATH=/
        image: evanbuss/openbooks:latest
        labels:
          - com.centurylinklabs.watchtower.enable=true