linux - Error installing docker -
installed docker according instruction:
https://docs.docker.com/engine/installation/linux/docker-ee/ubuntu/#install-using-the-repository
and have error:
e: unable locate package docker-ee when updating index of packages return error:
w: failed fetch https://download.docker.com/linux/ubuntu/dists/trusty/inrelease unable find expected entry 'stable-17.03/binary-amd64/packages' in release file (wrong sources.list entry or malformed file) what error?
p.s
lsb_release distributor id: ubuntu description: ubuntu 14.04.5 lts release: 14.04 codename: trusty uname -a linux dev-cherepanov 4.2.0-27-generic #32~14.04.1-ubuntu smp fri jan 22 15:32:26 utc 2016 x86_64 x86_64 x86_64 gnu/linux
there packages ubuntu 14.04 linux-image-extra-* packages, allow docker ee use aufs storage driver , here commands them:
$ sudo apt-get update $ sudo apt-get install \ linux-image-extra-$(uname -r) \ linux-image-extra-virtual and set repository:
$ sudo apt-get update $ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common $ curl -fssl <docker-ee-url>/ubuntu/gpg | sudo apt-key add - $ apt-key fingerprint 6d085f96 pub 4096r/6d085f96 2017-02-22 key fingerprint = dd91 1e99 5a64 a202 e859 07d6 bc14 f10b 6d08 5f96 uid [ultimate] docker release (ee deb) <docker@docker.com> sub 4096r/91a29fa3 2017-02-22 $ sudo add-apt-repository \ "deb [arch=amd64] <docker-ee-url>/ubuntu \ $(lsb_release -cs) \ stable-17.03" the last installation step of docker-ee:-
$ sudo apt-get update $ sudo apt-get install docker-ee hope works you.
Comments
Post a Comment