linuxserver / docker-radarr

GNU General Public License v3.0
646 stars 104 forks source link

Radarr fails to launch on Qnap Container Station #122

Closed brokencode64 closed 3 years ago

brokencode64 commented 3 years ago

Container starts but Radarr does not launch.

Expected Behavior

Radarr should launch and be available on port 7878.

Current Behavior

Radarr appears to start but never actually starts. Trying to run it manually ends in a segmentation fault.

Steps to Reproduce

Try to create a new radarr container through container station. It will start but radarr will not.

Environment

OS: QTS (Qnap TS-831X) CPU architecture: arm32 How docker service was installed: Container Station 2.2.14.1638

Command used to create docker container (run/create/compose/screenshot)

Created through container station ui.

Docker logs

[s6-init] making user provided files available at /var/run/s6/etc...exited 0.             
[s6-init] ensuring user provided files have correct perms...exited 0.                     
[fix-attrs.d] applying ownership & permissions fixes...                                   
[fix-attrs.d] done.                                                                       
[cont-init.d] executing container initialization scripts...                               
[cont-init.d] 01-envfile: executing...                                                    
[cont-init.d] 01-envfile: exited 0.                                                       
[cont-init.d] 10-adduser: executing...                                                    
usermod: no changes                                                                       

-------------------------------------                                                     
          _         ()                                                                    
         | |  ___   _    __                                                               
         | | / __| | |  /  \                                                              
         | | \__ \ | | | () |                                                             
         |_| |___/ |_|  \__/                                                              

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:    911                                                                          
User gid:    911                                                                          
-------------------------------------                                                     

[cont-init.d] 10-adduser: exited 0.                                                       
[cont-init.d] 30-config: executing...                                                     
[cont-init.d] 30-config: exited 0.                                                        
[cont-init.d] 99-custom-scripts: executing...                                             
[custom-init] no custom files found exiting...                                            
[cont-init.d] 99-custom-scripts: exited 0.                                                
[cont-init.d] done.                                                                       
[services.d] starting services                                                            
[services.d] done.    
github-actions[bot] commented 3 years ago

Thanks for opening your first issue here! Be sure to follow the issue template!

aptalca commented 3 years ago

duplicate, please check the numerous closed issues

brokencode64 commented 3 years ago

duplicate, please check the numerous closed issues

Do you have an example? None of the ones I checked were applicable.

j0nnymoe commented 3 years ago

https://github.com/linuxserver/docker-radarr/issues/121 / https://github.com/linuxserver/docker-radarr/issues/118

It's because your QNAP is arm based. https://docs.linuxserver.io/faq#my-host-is-incompatible-with-images-based-on-ubuntu-focal is what you would need to do on normal host but as you're on a QNAP, you'd have to wait for their own patch or firmware update I guess.

TheMalkavian commented 3 years ago

Have you tried adding via using the Docker Compose function under "Create" > "Create Application"? I was able to specify a particular build before they changed version numbers from 0.2 to 3 and was able to get it working.

radarr:
    image: ghcr.io/linuxserver/radarr:v0.2.0.1504-ls84
    container_name: radarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London
      - UMASK_SET=022 #optional
    volumes:
      - /path/to/data:/config
      - /path/to/movies:/movies
      - /path/to/downloadclient-downloads:/downloads
    ports:
      - 7878:7878
    restart: unless-stopped