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] Trying to upgrade from 4.1.0.6175-ls141 to latest #213

Closed
1 task done
kurktchiev opened this issue Jul 10, 2023 · 9 comments
Closed
1 task done

[BUG] Trying to upgrade from 4.1.0.6175-ls141 to latest #213

kurktchiev opened this issue Jul 10, 2023 · 9 comments

Comments

@kurktchiev
Copy link

Is there an existing issue for this?

  • I have searched the existing issues

Current Behavior

When I switch my docker-compose to pull the latest Radarr image, Radarr never actually starts up. The whole log file can be seen below:

[migrations] started
[migrations] no migrations found
───────────────────────────────────────
      ██╗     ███████╗██╗ ██████╗ 
      ██║     ██╔════╝██║██╔═══██╗
      ██║     ███████╗██║██║   ██║
      ██║     ╚════██║██║██║   ██║
      ███████╗███████║██║╚██████╔╝
      ╚══════╝╚══════╝╚═╝ ╚═════╝ 
   Brought to you by linuxserver.io
───────────────────────────────────────
To support the app dev(s) visit:
Radarr: https://opencollective.com/radarr
To support LSIO projects visit:
https://www.linuxserver.io/donate/
───────────────────────────────────────
GID/UID
───────────────────────────────────────
User UID:    1024
User GID:    100
───────────────────────────────────────
[custom-init] No custom files found, skipping...

No matter what I do it just sits on the custom-init and never gets past it.

Expected Behavior

Fire up and finish starting up

Steps To Reproduce

  1. Start with this compose:
---
version: "2.1"
services:
  radarr:
    image: lscr.io/linuxserver/radarr:4.1.0.6175-ls141
    container_name: radarr
    # network_mode: host
    labels:
      - "com.centurylinklabs.watchtower.enable=true"
    environment:
      - PUID=1024
      - PGID=100
      - TZ=America/New_York
    volumes:
      - /volume1/docker/radarr:/config
      - /volume1/New Stuff:/downloads
      - /volume1/New Stuff:/volume1/New Stuff
      - /volume1/Movies:/movies
    ports:
      - 17878:7878
    restart: unless-stopped

See that things start up as expected.

Switch to this compose:

---
version: "2.1"
services:
  radarr:
    # image: lscr.io/linuxserver/radarr:4.1.0.6175-ls141
    image: lscr.io/linuxserver/radarr
    container_name: radarr
    # network_mode: host
    labels:
      - "com.centurylinklabs.watchtower.enable=true"
    environment:
      - PUID=1024
      - PGID=100
      - TZ=America/New_York
    volumes:
      - /volume1/docker/radarr:/config
      - /volume1/New Stuff:/downloads
      - /volume1/New Stuff:/volume1/New Stuff
      - /volume1/Movies:/movies
    ports:
      - 17878:7878
    restart: unless-stopped

Watch it get stuck on the line above and never move past it.

Environment

- OS: Synology 6.x
- How docker service was installed: docker-compose

CPU architecture

x86-64

Docker creation

---
version: "2.1"
services:
  radarr:
    # image: lscr.io/linuxserver/radarr:4.1.0.6175-ls141
    image: lscr.io/linuxserver/radarr
    container_name: radarr
    # network_mode: host
    labels:
      - "com.centurylinklabs.watchtower.enable=true"
    environment:
      - PUID=1024
      - PGID=100
      - TZ=America/New_York
    volumes:
      - /volume1/docker/radarr:/config
      - /volume1/New Stuff:/downloads
      - /volume1/New Stuff:/volume1/New Stuff
      - /volume1/Movies:/movies
    ports:
      - 17878:7878
    restart: unless-stopped

Container logs

[migrations] started
[migrations] no migrations found
───────────────────────────────────────
      ██╗     ███████╗██╗ ██████╗ 
      ██║     ██╔════╝██║██╔═══██╗
      ██║     ███████╗██║██║   ██║
      ██║     ╚════██║██║██║   ██║
      ███████╗███████║██║╚██████╔╝
      ╚══════╝╚══════╝╚═╝ ╚═════╝ 
   Brought to you by linuxserver.io
───────────────────────────────────────
To support the app dev(s) visit:
Radarr: https://opencollective.com/radarr
To support LSIO projects visit:
https://www.linuxserver.io/donate/
───────────────────────────────────────
GID/UID
───────────────────────────────────────
User UID:    1024
User GID:    100
───────────────────────────────────────
[custom-init] No custom files found, skipping...
@github-actions
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.

@j0nnymoe
Copy link
Member

What model Synology?

@kurktchiev
Copy link
Author

Docker Info:

❯ docker version
Client:
 Version:           20.10.3
 API version:       1.41
 Go version:        go1.15.6
 Git commit:        b35e731
 Built:             Fri Jun 18 08:25:45 2021
 OS/Arch:           linux/amd64
 Context:           default
 Experimental:      true

Synology HW version: DS1512+
Synology OS: DSM 6.2.4-25556 Update 7

@kurktchiev
Copy link
Author

any thoughts?

@LinuxServer-CI
Copy link
Contributor

This issue has been automatically marked as stale because it has not had recent activity. This might be due to missing feedback from OP. It will be closed if no further activity occurs. Thank you for your contributions.

@kurktchiev
Copy link
Author

its still happening. any ideas are welcome

@LinuxServer-CI
Copy link
Contributor

This issue has been automatically marked as stale because it has not had recent activity. This might be due to missing feedback from OP. It will be closed if no further activity occurs. Thank you for your contributions.

@kurktchiev
Copy link
Author

Still unresolved

@Roxedus
Copy link
Member

Roxedus commented Sep 30, 2023

Your CPU does not support the needed instructions used by alpine 3.15, which manifests in wierd errors like this.

@Roxedus Roxedus closed this as completed Sep 30, 2023
@LinuxServer-CI LinuxServer-CI moved this from Issues to Done in Issue & PR Tracker Sep 30, 2023
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

4 participants