Calibre Web Not accessible - Please Help

Discussion about Docker
Locked
User avatar
IvanG
Posts: 4
Joined: 10 Jan 2022, 23:11

Calibre Web Not accessible - Please Help

Post by IvanG »

I'm trying to run a container with an image of calibre web in TOS 5 with no luck for the moment and not sure if I'm doing something wrong or if there is something missing in my configuration.

For the installation I'm excuting the following docker-compose.yml

Code: Select all

---
version: "2.1"
services:
  calibre-web:
    image: linuxserver/calibre-web:latest
    container_name: calibre-web
    environment:
      - PUID=1009
      - PGID=1009
      - TZ=Europe/Madrid
      - DOCKER_MODS=linuxserver/mods:universal-calibre #optional
      - OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional
    volumes:
      - /Volume1/DockerData/volumes/config:/config
      - /Volume1/DockerData/volumes/books:/books
    ports:
      - 8083:8083
    restart: unless-stopped
I've tried PUID 0 also but result is the same and both volume folders are created and with all the persmisions granted.

Things that I noticed in the console:

- Seems that its not able to update itself:

Code: Select all

....
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/focal-security/restricted/binary-amd64/Packages  Unable to connect to archive.ubuntu.com:http: [IP: 185.125.190.39 80],
W: Some index files failed to download. They have been ignored, or old ones used instead.,
....
Although in the end it seems to succesfully start:

Code: Select all

cont-init: info: /etc/cont-init.d/99-custom-scripts exited 0,
s6-rc: info: service legacy-cont-init successfully started,
s6-rc: info: service init-mods: starting,
s6-rc: info: service init-mods successfully started,
s6-rc: info: service init-mods-package-install: starting,
s6-rc: info: service init-mods-package-install successfully started,
s6-rc: info: service init-mods-end: starting,
s6-rc: info: service init-mods-end successfully started,
s6-rc: info: service init-services: starting,
s6-rc: info: service init-services successfully started,
s6-rc: info: service legacy-services: starting,
services-up: info: copying legacy longrun calibre-web (no readiness notification),
s6-rc: info: service legacy-services successfully started,
s6-rc: info: service 99-ci-service-check: starting,
[ls.io-init] done.,
s6-rc: info: service 99-ci-service-check successfully started,
But I'm not able to connect with the application on port 8083. I did install Calibre-Web in Docker in TOS 4 and it worked just fine.

Could you help me to identify what am I doing wrong? Many thanks

As separate question It would be nice to have the application available for installation natively in TOS
User avatar
TMnorah
TerraMaster Team
Posts: 117
Joined: 17 Aug 2021, 09:51

Re: Calibre Web Not accessible - Please Help

Post by TMnorah »

What is your system version? What is the docker application version?
After testing in our lab, the images you mentioned can be used normally. Because calibre-web is based on calibre, it is not responsible for the creation of book libraries, so a data warehouse is required. Please refer to the relevant information for configuration. If you've made sure your settings are correct and you're still having trouble creating containers from Docker Hub's images, try a different image.
To contact our team, please send email to following addresses, remember to replace (at) with @
Technical team: support(at)terra-master.com (for technical support)
Service team: service(at)terra-master.com (for purchasing, return, replacement, RMA service)
Locked