Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] linuxserver/mods:universal-calibre digest could not be fetched from lscr.io #77

Closed
1 task done
m9x3mos opened this issue Aug 23, 2024 · 2 comments
Closed
1 task done

Comments

@m9x3mos
Copy link

m9x3mos commented Aug 23, 2024

Is there an existing issue for this?

  • I have searched the existing issues

Current Behavior

When attempting to setup a new docker compose with LazyLibrarian, I am not getting this error:
2024-08-23 11:51:33 lazylibrarian | [mod-init] Running Docker Modification Logic
2024-08-23 11:51:33 lazylibrarian | [mod-init] Adding linuxserver/mods:universal-calibre to container
2024-08-23 11:51:34 lazylibrarian | [mod-init] (ERROR) linuxserver/mods:universal-calibre digest could not be fetched from lscr.io
2024-08-23 11:51:35 lazylibrarian | [mod-init] Adding linuxserver/mods:lazylibrarian-ffmpeg to container
2024-08-23 11:51:36 lazylibrarian | [mod-init] (ERROR) linuxserver/mods:lazylibrarian-ffmpeg digest could not be fetched from lscr.io

Previous issues I found reffered to network issues blocking the connection.
The container can access the internet without issue (apt update and upgrade also works).
I have tested on 2 different landline internet services and mobile hotspot from my phone as well.

Expected Behavior

load the scripts without error

Steps To Reproduce

  1. Clean windows install with new install of docker desktop.
  2. Create new docker compose with the code as below

services:
lazylibrarian:
image: lscr.io/linuxserver/lazylibrarian:latest
container_name: lazylibrarian
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- DOCKER_MODS=linuxserver/mods:universal-calibre|linuxserver/mods:lazylibrarian-ffmpeg #optional
volumes:
- /path/to/lazylibrarian/data:/config
- /path/to/downloads/:/downloads
- /path/to/data/:/books #optional
ports:
- 5299:5299
restart: unless-stopped
3. run docker compose up -d
4. observe error in log

When it was working before, I did need to run "apt install xdg-utils" in the container and then restart it for the install to correctly work.

Environment

- OS:Windows 11 22631.4037
- How docker service was installed: Docker Desktop

CPU architecture

arm64

Docker creation

---
services:
  lazylibrarian:
    image: lscr.io/linuxserver/lazylibrarian:latest
    container_name: lazylibrarian
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
      - DOCKER_MODS=linuxserver/mods:universal-calibre|linuxserver/mods:lazylibrarian-ffmpeg #optional
    volumes:
      - /path/to/lazylibrarian/data:/config
      - /path/to/downloads/:/downloads
      - /path/to/data/:/books #optional
    ports:
      - 5299:5299
    restart: unless-stopped

Container logs

2024-08-23 11:51:33 lazylibrarian  | [mod-init] Running Docker Modification Logic
2024-08-23 11:51:33 lazylibrarian  | [mod-init] Adding linuxserver/mods:universal-calibre to container
2024-08-23 11:51:34 lazylibrarian  | [mod-init] (ERROR) linuxserver/mods:universal-calibre digest could not be fetched from lscr.io
2024-08-23 11:51:35 lazylibrarian  | [mod-init] Adding linuxserver/mods:lazylibrarian-ffmpeg to container
2024-08-23 11:51:36 lazylibrarian  | [mod-init] (ERROR) linuxserver/mods:lazylibrarian-ffmpeg digest could not be fetched from lscr.io
2024-08-23 11:51:36 lazylibrarian  | [migrations] started
2024-08-23 11:51:36 lazylibrarian  | [migrations] no migrations found
2024-08-23 11:51:36 lazylibrarian  | ───────────────────────────────────────
2024-08-23 11:51:36 lazylibrarian  | 
2024-08-23 11:51:36 lazylibrarian  |       ██╗     ███████╗██╗ ██████╗
2024-08-23 11:51:36 lazylibrarian  |       ██║     ██╔════╝██║██╔═══██╗
2024-08-23 11:51:36 lazylibrarian  |       ██║     ███████╗██║██║   ██║
2024-08-23 11:51:36 lazylibrarian  |       ██║     ╚════██║██║██║   ██║
2024-08-23 11:51:36 lazylibrarian  |       ███████╗███████║██║╚██████╔╝
2024-08-23 11:51:36 lazylibrarian  |       ╚══════╝╚══════╝╚═╝ ╚═════╝
2024-08-23 11:51:36 lazylibrarian  | 
2024-08-23 11:51:36 lazylibrarian  |    Brought to you by linuxserver.io
2024-08-23 11:51:36 lazylibrarian  | ───────────────────────────────────────
2024-08-23 11:51:36 lazylibrarian  | 
2024-08-23 11:51:36 lazylibrarian  | To support LSIO projects visit:
2024-08-23 11:51:36 lazylibrarian  | https://www.linuxserver.io/donate/
2024-08-23 11:51:36 lazylibrarian  | 
2024-08-23 11:51:36 lazylibrarian  | ───────────────────────────────────────
2024-08-23 11:51:36 lazylibrarian  | GID/UID
2024-08-23 11:51:36 lazylibrarian  | ───────────────────────────────────────
2024-08-23 11:51:36 lazylibrarian  | 
2024-08-23 11:51:36 lazylibrarian  | User UID:    1000
2024-08-23 11:51:36 lazylibrarian  | User GID:    1000
2024-08-23 11:51:36 lazylibrarian  | ───────────────────────────────────────
2024-08-23 11:51:36 lazylibrarian  | Linuxserver.io version: 9186f2c3-ls77
2024-08-23 11:51:36 lazylibrarian  | Build-date: 2024-08-18T19:56:41+00:00
2024-08-23 11:51:36 lazylibrarian  | ───────────────────────────────────────
2024-08-23 11:51:36 lazylibrarian  |     
2024-08-23 11:51:36 lazylibrarian  | [custom-init] No custom files found, skipping...
2024-08-23 11:51:36 lazylibrarian  | /app/lazylibrarian/cherrypy/process/servers.py:1: SyntaxWarning: invalid escape sequence '\ '
2024-08-23 11:51:36 lazylibrarian  |   """
2024-08-23 11:51:39 lazylibrarian  | 2024-08-23 15:51:39,741 DEBUG: Set config[LOGDIR]=/config/log [configtypes.py:160 (MAIN/special.configwrite)]
2024-08-23 11:51:39 lazylibrarian  | 2024-08-23 15:51:39,742 DEBUG: Set config[EBOOK_DIR]=/books [configtypes.py:160 (MAIN/special.configwrite)]
2024-08-23 11:51:39 lazylibrarian  | 2024-08-23 15:51:39,742 DEBUG: Set config[DOWNLOAD_DIR]=/downloads [configtypes.py:160 (MAIN/special.configwrite)]
2024-08-23 11:51:39 lazylibrarian  | 2024-08-23 15:51:39,744 DEBUG: Set config[AUDIOBOOK_DEST_FOLDER]=$Author/$Title [configtypes.py:160 (MAIN/special.configwrite)]
2024-08-23 11:51:39 lazylibrarian  | 2024-08-23 15:51:39,746 DEBUG: Read config[LOGDIR]=/config/log [configtypes.py:144 (MAIN)]
2024-08-23 11:51:39 lazylibrarian  | 2024-08-23 15:51:39,746 DEBUG: Read config[LOGSPECIALDEBUG]= [configtypes.py:144 (MAIN)]
2024-08-23 11:51:40 lazylibrarian  | /app/lazylibrarian/urllib3/connectionpool.py:1045: InsecureRequestWarning: Unverified HTTPS request is being made to host 'bootswatch.com'. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/1.26.x/advanced-usage.html#ssl-warnings
2024-08-23 11:51:40 lazylibrarian  |   warnings.warn(
2024-08-23 11:51:41 lazylibrarian  | Connection to localhost (127.0.0.1) 5299 port [tcp/*] succeeded!
2024-08-23 11:51:41 lazylibrarian  | [ls.io-init] done.
Copy link

Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.

@aptalca
Copy link
Member

aptalca commented Aug 23, 2024

scarf.sh is having issues. See this post in the meantime: linuxserver/docker-mods#872 (comment)

@aptalca aptalca closed this as not planned Won't fix, can't repro, duplicate, stale Aug 23, 2024
@LinuxServer-CI LinuxServer-CI moved this from Issues to Done in Issue & PR Tracker Aug 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Archived in project
Development

No branches or pull requests

2 participants