Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save infinityonlinesolutions/5137dfacc715b8d6a581657ac8fe5244 to your computer and use it in GitHub Desktop.
Save infinityonlinesolutions/5137dfacc715b8d6a581657ac8fe5244 to your computer and use it in GitHub Desktop.
Enable BuildKit Docker Ubuntu 22.04|24.04
#!/bin/bash
#
# https://docs.docker.com/build/buildkit/
# https://github.com/docker/buildx/releases/
# https://github.com/docker/buildx
VERSION=v0.14.1
mkdir -p $HOME/.docker/cli-plugins
wget https://github.com/docker/buildx/releases/download/$VERSION/buildx-$VERSION.linux-amd64 -O $HOME/.docker/cli-plugins/docker-buildx
chmod +x $HOME/.docker/cli-plugins/docker-buildx
export DOCKER_BUILDKIT=1
export COMPOSE_DOCKER_CLI_BUILD=1
echo 'export DOCKER_BUILDKIT=1
export COMPOSE_DOCKER_CLI_BUILD=1' >> $HOME/.profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment