I’m trying to setup paperless-ngx on local PC with Tumbleweed via recommended install method docker, but some docker containers keep restarting or fail to start.
Same issues happens with podman, as the podman containers keeps restarting after few seconds.
What i have done:
- installed docker via opensuse wiki
- started docker daemon and checked if its running:
sudo systemctl status docker
● docker.service - Docker Application Container Engine
Loaded: loaded (/usr/lib/systemd/system/docker.service; enabled; preset: disabled)
Active: active (running) since Tue 2025-11-04 10:14:22 CET; 3s ago
Invocation: 29ba1ebd6ab24051acb370671b7d0e7a
TriggeredBy: ● docker.socket
Docs: http://docs.docker.com
Main PID: 7203 (dockerd)
Tasks: 36
CPU: 226ms
CGroup: /system.slice/docker.service
├─7203 /usr/bin/dockerd --add-runtime oci=/usr/sbin/runc
└─7219 containerd --config /var/run/docker/containerd/containerd.toml
-
configured “docker-compose.env” and “docker-compose.yml” files for paperless-ngx.
(I’m using so called ‘bind mounts’ to change directorys for paperless to /home) -
installed paperless-ngx with
docker compose pullanddocker compose up -d
So far no errors and all containers started.
docker compose up -d
[+] Running 5/5
✔ Container paperless-tika-1 Started 3.4s
✔ Container paperless-broker-1 Started 3.4s
✔ Container paperless-gotenberg-1 Started 3.5s
✔ Container paperless-db-1 Started 3.4s
✔ Container paperless-webserver-1 Started 0.6s
- check if docker containers are really running:
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
dbc5e65850b3 ghcr.io/paperless-ngx/paperless-ngx:latest "/init" 5 minutes ago Up 12 seconds (health: starting) 0.0.0.0:8000->8000/tcp, [::]:8000->8000/tcp paperless-webserver-1
8cc6e89a624c gotenberg/gotenberg:8.24 "/usr/bin/tini -- go…" 5 minutes ago Up 5 minutes 3000/tcp paperless-gotenberg-1
5c7e5b71cb3e redis:8 "docker-entrypoint.s…" 5 minutes ago Restarting (1) 17 seconds ago paperless-broker-1
ca1aaa28ca24 postgres:18 "docker-entrypoint.s…" 5 minutes ago Restarting (1) 17 seconds ago paperless-db-1
d78dfde05da6 apache/tika:latest "/bin/sh -c 'exec ja…" 5 minutes ago Up 5 minutes 9998/tcp paperless-tika-1
And here we see in column “STATUS” that some containers are up but some doesn’t start or fail and keep restarting after few seconds. That’s why i can’t access paperless-ngx and start using it.
My user has already assigned group “docker” if this is relevant.
id thomas
uid=1000(thomas) gid=100(users) Gruppen=100(users),36(kvm),460(vboxusers),108(libvirt),454(docker)
Same issue with podman, as the containers keeps restarting or fail to come up.
How do i fix this?
Do i might need to configure SELinux first for using docker/podman?