Questions tagged [docker]

For questions about using the Docker virtualisation tool with the Raspberry Pi.

Docker is a virtualisation tool that assists in the development of applications.

Use this tag for questions regarding the Docker environment and for configuring Docker with respect to the Raspberry Pi.

106 questions
24
votes
5 answers

Docker on Raspbian?

How would I go about running Docker (https://www.docker.io) on Raspbian? The instructions I've found are either a very manual process based on Raspbian but with a very old kernel that seemed to require a bunch of patches. There's also the well-known…
Martijn Heemels
  • 428
  • 1
  • 4
  • 7
24
votes
5 answers

Installing docker on Raspberry pi

Trying to set up docker on my pi, getting errors I’m not sure what to do with. the generally recommended thing to do is to run the following: $ curl -sSL https://get.docker.com | sh But that script isn’t very informative error-wise; I’m getting…
cryptograthor
  • 383
  • 1
  • 2
  • 8
13
votes
4 answers

Uninstall Docker

I have installed docker as described here raspberrypi.org/blog/docker-comes-to-raspberry-pi with curl -sSL https://get.docker.com | sh. How do I uninstall it?
förschter
  • 233
  • 1
  • 3
  • 6
6
votes
0 answers

Docker Alpine:latest image fails to get date so everything fails

I just got a Raspberry pi 4 with 8GB and a SD. I ran all the updates and went directly to install docker and discovered that many images were randomly failing. I narrowed it down to the alpine:latest image and the date function going…
Trisky
  • 61
  • 3
6
votes
1 answer

Do I need to do anything to install/run applications in 64 bit?

I've switched my Raspberry Pi 4 from 32 bit to 64 bit (Raspbian buster) by adding this to /boot/config.txt kernel=kernel8.img arm_64bit=1 This seems to work fine. I'm running docker and that has continued to work. However, as a person coming from…
5
votes
1 answer

Docker Daemon fails to run - containerd will not start

Fairly new to Linux. Trying to run Docker on a raspberrypi. sudo service docker status docker.service: Job docker.service/start failed with result 'dependency'. sudo systemctl list-dependencies docker container.d not started sudo systemctl start…
Sidereal
  • 161
  • 1
  • 5
5
votes
2 answers

Camera access in docker container is generating errors / locking

I am trying to build some machine vision software inside docker containers, it has worked previously, but now both devices are not able to access the camera. It seems to be a configuration/update problem, as it has worked previously. I am not sure…
4
votes
1 answer

Docker 'core-dump' error when starting service

I'm using a Raspberry Pi 1 Model B. I've just installed using the easy script: curl -sSL https://get.docker.com | sh install results: # Executing docker install script, commit: 4957679 + sudo -E sh -c apt-get update -qq >/dev/null + sudo -E sh -c…
jimjamz
  • 73
  • 2
  • 8
4
votes
1 answer

Raspberry Pi Zero W - Docker

I'm trying to start resin/rpi-raspbian image on a Raspberry Pi zero w and executing the command /bin/bash: docker run -it resin/rpi-raspbian /bin/bash But I didn't get the container console with that. Although, on a Raspberry Pi 3 it works!
Alberto Gorni
  • 41
  • 1
  • 3
4
votes
2 answers

What is the meaning of put a docker in the PI?

I am considering installing a docker on pi 2. But after some research, I find that might not be a good idea. docker is not ready for PI yet, there are some solutions, but not pefect, like…
Liao Zhuodi
  • 225
  • 2
  • 6
4
votes
3 answers

huge syslog filled with dhcpcd lines

I have a pi that is defined wi static IP in /etc/dhcpcd.conf: interface eth0 inform 4.3.2.77 static routers=4.3.2.1 everything worked great until lately once a day I had to restart it because it was freeze. when I've tried to understand the cause…
yossico
  • 179
  • 7
3
votes
1 answer

How to build Docker Pi image on x86

I'm doing Java development on Mac and I am trying to build an ARM docker container from my mac that will run on a Raspberry Pi 3 running Raspbian. I am able to find docker containers that will run on a Pi, but I cannot figure out how to build one…
TCVV
  • 31
  • 4
3
votes
2 answers

Docker run "someImage" returns: standard_init_linux.go190: exec user process caused "no such file or directory"

As the title said, I cannot reproduce this kind of error in any Dockerfiles of mine, after trying to run the Docker Container with docker run registryName:tag I'm trying to cross compile from amd64 -> arm6 via gitLab CI 1. Dockerfile: FROM…
Phong
  • 113
  • 1
  • 10
3
votes
2 answers

What's the optimal way to install latest Docker on Raspbian? legacy docker-engine package from official get Docker

When installing official Docker packages I get a warning: curl -sSL get.docker.com | sh Executing docker install script, commit: 29533f9 …
Sybil
  • 508
  • 2
  • 4
  • 16
3
votes
3 answers

It's possible to rewrite sd card image over the ssh

We use 50 and more RPi's in our company and now we are in difficult situation because we have to write new image of system to each of those devices. From Raspbian to Docker system where is easy to manage; for example Raspbian. This is one…
1
2 3 4 5 6 7 8