Skip to content

Instantly share code, notes, and snippets.

@mingrui
Created April 29, 2018 14:42
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mingrui/187f0e629007443268ce8c1414012ed5 to your computer and use it in GitHub Desktop.
Save mingrui/187f0e629007443268ce8c1414012ed5 to your computer and use it in GitHub Desktop.
docker-ce : Depends: libseccomp2 (>= 2.3.0) but 2.2.3-3ubuntu3 is to be installed
When installing latest docker-ec 18, I encountered libseccomp2 version problem
https://www.ubuntuupdates.org/ppa/ubuntu_sdk_release?dist=xenial
add this to update libseccomp2
then install docker-ce
@xiaoniaoyou
Copy link

It worked. Thanks.

@ccll
Copy link

ccll commented Aug 21, 2018

Works for me, thanks!

@sniperwang
Copy link

Good~谢谢

@dancer1325
Copy link

Oh, Thanks!!!

@imshayne
Copy link

You can use aptitude instead of apt-get to install.

@kidstell
Copy link

kidstell commented Jan 4, 2022

I was hoping to solve this exact issue, but this method did not work for me. maybe due to network restrictions, and perhaps PPA URL alone is not accepted in the sources.list file.

so I followed another article and used a different PPA. This has to be done by the root user because Sudo did not work for me for an unknown reason, with no errors whatsoever.
echo -e "deb http://security.ubuntu.com/ubuntu xenial-security main" >> /etc/apt/sources.list;apt-get update

I actually added the apt-get update command myself
The full explanation was at https://splashcoder.blogspot.com/2022/01/solved-linux-issues-installing-docker.html.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment