Skip to content

Instantly share code, notes, and snippets.

@klevo
Created January 28, 2024 15:15
Show Gist options
  • Save klevo/8102f334549350401388c56a622bc237 to your computer and use it in GitHub Desktop.
Save klevo/8102f334549350401388c56a622bc237 to your computer and use it in GitHub Desktop.
Install docker-ce on Amazon Linux 2023
dnf install -y \
https://download.docker.com/linux/fedora/38/aarch64/stable/Packages/docker-ce-cli-24.0.5-1.fc38.aarch64.rpm \
https://download.docker.com/linux/fedora/38/aarch64/stable/Packages/containerd.io-1.6.22-3.1.fc38.aarch64.rpm \
https://download.docker.com/linux/fedora/38/aarch64/stable/Packages/docker-ce-24.0.5-1.fc38.aarch64.rpm \
https://download.docker.com/linux/fedora/38/aarch64/stable/Packages/docker-ce-rootless-extras-24.0.5-1.fc38.aarch64.rpm \
https://download.docker.com/linux/fedora/38/aarch64/stable/Packages/docker-buildx-plugin-0.11.2-1.fc38.aarch64.rpm \
https://download.docker.com/linux/fedora/38/aarch64/stable/Packages/docker-compose-plugin-2.20.2-1.fc38.aarch64.rpm \
https://kojipkgs.fedoraproject.org//packages/fuse-overlayfs/1.12/1.fc38/aarch64/fuse-overlayfs-1.12-1.fc38.aarch64.rpm \
https://dl.fedoraproject.org/pub/fedora/linux/releases/38/Everything/aarch64/os/Packages/f/fuse3-libs-3.13.1-2.fc38.aarch64.rpm \
https://kojipkgs.fedoraproject.org//packages/slirp4netns/1.2.0/12.fc38/aarch64/slirp4netns-1.2.0-12.fc38.aarch64.rpm \
https://kojipkgs.fedoraproject.org//packages/libslirp/4.7.0/3.fc38/aarch64/libslirp-4.7.0-3.fc38.aarch64.rpm
usermod -G docker ec2-user
systemctl enable docker
systemctl start docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment