Skip to content

Instantly share code, notes, and snippets.

@jpcaparas
Last active June 26, 2019 20:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpcaparas/cf4db5230796b04cccf38c39bb674a12 to your computer and use it in GitHub Desktop.
Save jpcaparas/cf4db5230796b04cccf38c39bb674a12 to your computer and use it in GitHub Desktop.
Install Docker CE on Fedora 30
# Main guide
https://docs.docker.com/install/linux/docker-ce/fedora/
# Set up the repository
sudo dnf -y install dnf-plugins-core
sudo dnf config-manager \
--add-repo \
https://download.docker.com/linux/fedora/docker-ce.repo
# Disable the stable repo (for now) and enable the nightly repo
sudo dnf config-manager --set-disabled docker-ce-stable
sudo dnf config-manager --set-enabled docker-ce-nightly
# Install F28's containerd.io repo
# From https://download.docker.com/linux/fedora/28/x86_64/stable/Packages/
sudo dnf install https://download.docker.com/linux/fedora/28/x86_64/stable/Packages/containerd.io-1.2.5-3.1.fc28.x86_64.rpm
# Install docker nightly (deplist satisfied)
sudo dnf install docker-ce docker-ce-cli
# (Optional) version lock containerd.io
sudo dnf versionlock containerd.io.x86_64
@betray32
Copy link

betray32 commented May 17, 2019

Will there eventually be a official version for fedora 30?

@AlphaLiu
Copy link

sudo dnf config-manager --set-enabled docker-ce-test

is alternative.

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