5

I have pull the image https://hub.docker.com/r/docker/compose/ docker pull docker/compose

But how can I run it to build my images on Raspberry Pi/rpi3?

1 Answers1

4

According to this reply it should run by issuing:

docker run -ti --rm -v `pwd`/docker-compose.yaml:/docker-compose.yml -v
/var/run/docker.sock:/var/run/docker.sock docker/compose:1.16.1 up
030
  • 13,235
  • 16
  • 74
  • 173