linuxserver / docker-jackett

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

Container restarting loop #145

Closed laurentbinagot closed 1 year ago

laurentbinagot commented 1 year ago

Is there an existing issue for this?

Current Behavior

When I run my container he is restarting again and again

Expected Behavior

see the previous test I tried on this issue https://github.com/Jackett/Jackett/issues/14858

Steps To Reproduce

docker-compose pull docker-compose up -d and then container starting, ip_addresse was attributed and lost and restarting again and again

Environment

- OS:Linux raspberrypi 6.1.21-v8+ #1642 SMP PREEMPT Mon Apr  3 17:24:16 BST 2023 aarch64 GNU/Linux

CPU architecture

x86-64

Docker creation

version: "3"
services:
jackett:
image: ghcr.io/linuxserver/jackett:arm64v8-latest
container_name: jackett
environment:
- TZ=Europe/Paris
- AUTO_UPDATE=true
- PUID=1000
- PGID=1000
volumes:
- ./config:/config
#- ./jackett/blackhole:/downloads
ports:
- 9117:9117
restart: unless-stopped
networks:
- cloudflare
depends_on:
- flaresolverr
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr
container_name: flaresolverr
environment:
- LOG_LEVEL=info
#- CAPTCHA_SOLVER=hcaptcha-solver
- LANG=en_US
ports:
- 8191:8191
restart: unless-stopped
networks:
- cloudflare

networks:
cloudflare:
external: false
enable_ipv6: false

Container logs

no logs due to not starting completely
github-actions[bot] commented 1 year ago

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

j0nnymoe commented 1 year ago

We need to see the container start up logs, you can get these by doing docker logs jackett.

laurentbinagot commented 1 year ago

there is no logs even with the command docker logs jackett

thespad commented 1 year ago

I suspect your issue is due to this https://github.com/raspberrypi/linux/issues/5402

See https://www.linuxserver.io/armhf for more context.

laurentbinagot commented 1 year ago

So I have to reinstall entirely my Pi with a 64bit OS ? I was convince that was already my case but apparently not :/

thespad commented 1 year ago

If you followed the default Raspbian install you will have got a 32-bit OS, and then they're upgrading your kernel to 64-bit giving you a mixed kernel/userspace that causes all kinds of odd issues.

If you choose to use Raspbian again (and I wouldn't), make sure you definitely get the 64-bit install as they're still pushing 32-bit as the default download.

laurentbinagot commented 1 year ago

ok thanks, what OS do you recommend me ? I want a small one

thespad commented 1 year ago

There are plenty of options, but for a headless SBC install we would typically recommend something like Ubuntu or DietPi. Which you should pick is down to your specific requirements.

laurentbinagot commented 1 year ago

For now it’s too complicated to reinstall a newer 64OS so I’ll try install on my NAS and if it work I’ll see later

laurentbinagot commented 1 year ago

I finally reinstalled with Ubuntu 64 bits and It work

thanks for the help