Skip to content

Instantly share code, notes, and snippets.

@Moep90
Created June 27, 2022 04:39
Show Gist options
  • Select an option

  • Save Moep90/0476d477a97eb2fcbcd08d4b2cfc4f6d to your computer and use it in GitHub Desktop.

Select an option

Save Moep90/0476d477a97eb2fcbcd08d4b2cfc4f6d to your computer and use it in GitHub Desktop.

Revisions

  1. Moep90 created this gist Jun 27, 2022.
    19 changes: 19 additions & 0 deletions docker-compose.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    ---
    version: "2.1"
    services:
    calibre-web:
    image: lscr.io/linuxserver/calibre-web:latest
    container_name: calibre-web
    environment:
    - PUID=1000
    - PGID=1000
    - TZ=Europe/London
    - DOCKER_MODS=linuxserver/calibre-web:calibre #optional
    - OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional
    volumes:
    - ./data/config:/config
    - ./data/books:/books
    - <path/to/books/to/add/to/calibre:/books_to_add:ro
    ports:
    - 8083:8083
    restart: unless-stopped