Skip to content

Instantly share code, notes, and snippets.

@luketn
Created March 15, 2024 13:20
Show Gist options
  • Save luketn/99302cf20039a56772ff9eef707dede7 to your computer and use it in GitHub Desktop.
Save luketn/99302cf20039a56772ff9eef707dede7 to your computer and use it in GitHub Desktop.
Install Docker and Docker Compose on AL2023
dnf install -y docker git
DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME/.docker}
mkdir -p $DOCKER_CONFIG/cli-plugins
curl -SL https://github.com/docker/compose/releases/download/v2.24.7/docker-compose-linux-x86_64 -o $DOCKER_CONFIG/cli-plugins/docker-compose
chmod +x $DOCKER_CONFIG/cli-plugins/docker-compose
systemctl start docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment