Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
docker_notes:docker-calibre [2023-10-28 Sat wk43 11:26] – created baumkp | docker_notes:docker-calibre [2024-09-11 Wed wk37 17:27] (current) – [Calibre-web] baumkp | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{tag> | ||
======Calibre====== | ======Calibre====== | ||
- | <- docker_notes: | + | |
+ | |||
+ | ====Calibre==== | ||
+ | This Docker container is based [[https:// | ||
+ | |||
+ | The image is based upon current Ubuntu Long term release. | ||
+ | |||
+ | ++++Calibre docker-compose.yml| | ||
+ | < | ||
+ | services: | ||
+ | calibre: | ||
+ | image: lscr.io/ | ||
+ | container_name: | ||
+ | security_opt: | ||
+ | - seccomp: | ||
+ | environment: | ||
+ | - PUID=1000 | ||
+ | - PGID=1000 | ||
+ | - TZ=Australia/ | ||
+ | - PASSWORD= #optional | ||
+ | - CLI_ARGS= #optional | ||
+ | volumes: | ||
+ | - / | ||
+ | ports: | ||
+ | - 8088:8080 | ||
+ | - 8089:8081 | ||
+ | restart: unless-stopped | ||
+ | networks: | ||
+ | - proxy | ||
+ | |||
+ | networks: | ||
+ | proxy: | ||
+ | external: true | ||
+ | </ | ||
+ | |||
+ | Notes: | ||
+ | - The log error/ | ||
+ | - To allow shell access added to '' | ||
+ | tty: true | ||
+ | stdin_open: true | ||
+ | command: / | ||
+ | |||
+ | ++++ | ||
+ | |||
+ | ====Calibre-web==== | ||
+ | |||
+ | This Docker container is based [[https:// | ||
+ | |||
+ | The image is based upon current Ubuntu long term release. | ||
+ | |||
+ | Standard login: admin | password: admin123 | ||
+ | |||
+ | ++++Calibre-web docker-compose.yml| | ||
+ | < | ||
+ | services: | ||
+ | calibre-web: | ||
+ | image: lscr.io/ | ||
+ | #image: lscr.io/ | ||
+ | container_name: | ||
+ | security_opt: | ||
+ | - seccomp: | ||
+ | environment: | ||
+ | - PUID=1000 | ||
+ | - PGID=1000 | ||
+ | - TZ=Australia/ | ||
+ | - DOCKER_MODS=linuxserver/ | ||
+ | - OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional | ||
+ | volumes: | ||
+ | - / | ||
+ | - / | ||
+ | ports: | ||
+ | - 8087:8083 | ||
+ | restart: unless-stopped | ||
+ | networks: | ||
+ | - proxy | ||
+ | |||
+ | networks: | ||
+ | proxy: | ||
+ | external: true | ||
+ | </ | ||
+ | |||
+ | Notes: | ||
+ | - The default login / password: admin / admin123 | ||
+ | - The /books direct points to the directory specified for the existing (or new) Calibre library | ||
+ | - The log error/ | ||
+ | ++++ | ||
+ | |||
+ | <- docker_notes: |