Docker crash at first install

Trying to get an initial install of brewpi running on a Zero W/16GB U1 MicroSD using the wiki instructions at: https://wiki.brewpi.com/getting-started/raspberry-pi-docker-install

Using ssh over wifi, everything works up until this point:
Linux raspberrypi 4.14.79+ #1159 Sun Nov 4 17:28:08 GMT 2018 armv6l

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Thu Nov 29 18:28:10 2018 from 192.168.0.105
pi@raspberrypi:~ $ docker pull portainer/portainer

Using default tag: latest
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
pi@raspberrypi:~ $ sudo service docker status
● docker.service - Docker Application Container Engine
   Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
   Active: inactive (dead) since Thu 2018-11-29 18:38:48 GMT; 8min ago
     Docs: https://docs.docker.com
  Process: 412 ExecStart=/usr/bin/dockerd -H unix:// (code=killed, signal=TERM)
 Main PID: 412 (code=killed, signal=TERM)
      CPU: 196ms

Nov 29 18:38:46 raspberrypi systemd[1]: Starting Docker Application Container Engine...
Nov 29 18:38:48 raspberrypi systemd[1]: Stopped Docker Application Container Engine.
pi@raspberrypi:~ $ sudo dockerd
Segmentation fault
pi@raspberrypi:~ $ sudo systemctl restart docker
Job for docker.service canceled.
pi@raspberrypi:~ $ sudo systemctl status docker
● docker.service - Docker Application Container Engine
   Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
   Active: failed (Result: core-dump) since Thu 2018-11-29 18:56:24 GMT; 3s ago
     Docs: https://docs.docker.com
  Process: 558 ExecStart=/usr/bin/dockerd -H unix:// (code=dumped, signal=SEGV)
 Main PID: 558 (code=dumped, signal=SEGV)
      CPU: 483ms

Nov 29 18:56:20 raspberrypi systemd[1]: Starting Docker Application Container Engine...
Nov 29 18:56:24 raspberrypi systemd[1]: docker.service: Main process exited, code=dumped, status=11/SEGV
Nov 29 18:56:24 raspberrypi systemd[1]: Stopped Docker Application Container Engine.
Nov 29 18:56:24 raspberrypi systemd[1]: docker.service: Unit entered failed state.
Nov 29 18:56:24 raspberrypi systemd[1]: docker.service: Failed with result 'core-dump'.
pi@raspberrypi:~ $

update, I was able to get it running by downgrading docker

sudo apt-get install docker-ce=18.05.0~ce~3-0~raspbian

So this appears to be a compatibility issue with armv61? Is anyone with a ZeroW running a package newer than 18.05.0?

1 Like

This works for me too