Docker unable to start after installation

Hi all,
I am a novice user of docker. I encounter problems to start the containers and images after docker installed in my ARM SBC.
sudo docker ps -a

CONTAINER ID   IMAGE                             COMMAND                  CREATED          STATUS    PORTS     NAMES
53ea6f1c8bf7   traefik:v3.2                      "/entrypoint.sh --pr…"   23 minutes ago   Created             runtipi-reverse-proxy
➜  ~ sudo docker images
REPOSITORY                TAG       IMAGE ID       CREATED        SIZE
portainer/portainer-ce    latest    87883b8f9d64   6 days ago     262MB
portainer/portainer-ce    lts       87883b8f9d64   6 days ago     262MB
ghcr.io/runtipi/runtipi   v3.10.0   37f8a9f4fe5d   2 weeks ago    426MB

It just hang up when I start docker run:

sudo docker run -d -p 9000:9000 --restart always -v /var/run/docker.sock:/var/run/docker.sock portainer/portainer-ce:lts

5b9989184f9c5bd39d9e4909db0987b629101a21f179dcc09147c3488919d5c8

Any expert has an idea to solve this problem?

I’m not sure what you mean by hang up. You shared a command and I assume the output of that command. When you run the container in the background (in detached mode usin g-d), you get the container id and the container is running in the background. You can check the logs using docker logs containername or using container id instead of the name.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.