Hi, I just migrated from jellyseerr to seerr (docker)
I use a dedicated, limited user for my containers, and I'd rather continue to use seerr with it. Can I continue using the user: instruction then? That user isn't 1000:1000
The migration guide mentions that init: true should be added. But seerr seems to work fine without. Is it some specific usecase that requires that?
I'm asking because I initially tried without the init: true instruction and by keeping my user: instruction I had for jellyseerr, and seerr seems to work fine for now, no error or warning in the logs.
For reference, here's my compose:
services:
seerr:
image: ghcr.io/seerr-team/seerr:latest
container_name: seerr
user: 1030:65536
environment:
- TZ=Europe/Brussels
volumes:
- /docker/appdata/seerr:/app/config
restart: unless-stopped
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
start_period: 20s
timeout: 3s
interval: 15s
retries: 3