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.

117 questions
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
  • 5
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
2
votes
3 answers

R with Docker in a raspberry pi?

I'm trying to create a Dockerfile for running R on a raspberry pi3. I found a container that has Debian for the pi. I also found a docker file that does what I want for an x86 computer. I thought creating a dockerfile for the pi would be a simple as…
Ignacio
  • 123
  • 4
2
votes
1 answer

failed to mount overlay: no such device when start docker in Raspberry Pi 4

when I am using this command to start dockerd in Raspberry Pi 4, it shows me this error: raspberrypi% sudo dockerd INFO[2020-07-26T18:41:15.229201974+08:00] Starting up INFO[2020-07-26T18:41:15.232284275+08:00]…
Dolphin
  • 141
  • 1
  • 7
2
votes
4 answers

Docker Running On RpiZW does everything but actually running container, SIGSEGV

I have installed a fresh raspbian buster and docker from get.docker.com on a raspberry pi zero W [Edit: Does not work on raspbian jessie or stretch either] I have run docker on that machine before, but now docker run just starts and…
Lenne
  • 233
  • 1
  • 9
1
vote
0 answers

Docker command for activating docker.service

I am trying to run systemctl status docker command and it shows me the error: ● docker.service - Docker Application Container Engine Loaded: loaded (/lib/systemd/system/docker.service; enabled) Active: failed (Result: exit-code) since Mon…
ina
  • 11
  • 1
1
vote
1 answer

dotnet returns error 132 with image dotnet/sdk:6.0.302-alpine3.16-arm32v7 on Raspberry 3B+

I want to build a .NET application inside a Docker container on a Raspberry Pi 3B+. dotnet build or publish, and even --version returns error code 132. docker build -t consoletest . Sending build context to Docker daemon 4.608kB Step 1/5 : FROM…
Kai Walter
  • 151
  • 5
1
vote
0 answers

install libraspberrypi on top of arm32v7/python docker base image

I'm trying to create a small footprint docker image to run a python app that uses GPIO and camera. Everything works fine when using FROM raspbian/stretch as the base image in my Dockerfile. If I understand correctly, I should be able to use the…
1
vote
1 answer

cannot import OpenCV in a Docker container in Raspberry Pi

I am trying to build a Docker container that can run Python OpenCV code in Raspbian 10. FROM python:3.5-buster RUN apt-get update RUN apt-get install apt-utils -y RUN apt-get install python-opencv -y RUN apt-get install python3-opencv -y COPY a.py…
wannik
  • 113
  • 5
0
votes
4 answers

Installing docker on RPi 3B+ with CentOS?

I'm using the latest CentOS release on my RPi and I'd like to start playing with docker. I tried following the official instructions here. I installed the dependencies and enabled the repo, but when I tried to run sudo yum install docker-ce, I got…
0
votes
0 answers

Discord bot - Lavalink: ECONNREFUSED

I'm using Rasp Pi Zero 2W. I bought pi for hosting my discord bot. I had an error in Docker containers. My discord bot trying to connect lavalink server but this error appear. These code are runing my local pc and AWS EC2 servers correctly. Does…
Kutluay
  • 1
  • 1
0
votes
0 answers

Can't connect to local Raspberry IP from Linux Mint PC (trying to set up Audiobookshelf)

I'm following this tutorial trying to set up Audiobookshelf. I'm at the step Setting Up Audiobookshelf From Your Home Network everything else has worked fine. I did the whole process via SSH from my Linux Mint PC, which worked surprisingly well…
0
votes
1 answer

Docker OS/Arch does not match uname

After installing Docker on a raspberry pi 4 following the official raspberry pi os docker install guide the docker version is the following Client: Docker Engine - Community Version: 24.0.5 API version: 1.43 Go version: …
Phönix 64
  • 103
  • 3
0
votes
0 answers

Docker containers inaccessible in browser after reboot - Raspberry Pi 4

Raspberry Pi 4 Raspberry Pi OS Lite Docker 23.0.0 Docker containers are not accessible in the browser after reboot, I thought it may have been because the containers do not start, but it appears that they do. But I am not sure why they are…
Yeah Nah
  • 25
  • 4
0
votes
1 answer

Running Raspberry PI in Docker

So, there are lots of Docker on PI questions out there but I'm looking todo it the other way, or run Raspberry PI in a Docker image running on x64 based platform. Are there any images built for this? Or, is my best bet to just setup a container to…
QueueHammer
  • 101
  • 3
1
2