Hi guys,
I’m trying to install Docker on a virtual machine based on Debian Stretch v.9: I follow the official tutorial for installation:
but without succes: when I install Docker with
sudo apt-get install docker-ce
it fails becau it can’t find any package named docker-ce.
So I try to download the deb package from https://download.docker.com/linux/debian/dists/
and the package downloaded is:
https://download.docker.com/linux/debian/dists/stretch/pool/stable/amd64/docker-ce_17.03.2~ce-0~debian-stretch_amd64.deb
but when I try with the command
sudo dpkg -i /path/to/package.deb
I receive the error of incompatibility of the architecture: my architeture is based on i686.
Can someone help me?
Thanks.