Skip to content

Instantly share code, notes, and snippets.

@troyfontaine
Created February 10, 2022 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save troyfontaine/3790a40bbe5bec2cf112568f5cfefd15 to your computer and use it in GitHub Desktop.
Save troyfontaine/3790a40bbe5bec2cf112568f5cfefd15 to your computer and use it in GitHub Desktop.
Install Docker Compose V2 on 64-bit Raspberry Pi OS
#!/usr/bin/env bash
# Download the binary
sudo curl -SL https://github.com/docker/compose/releases/download/v2.2.3/docker-compose-linux-aarch64 \
-o /usr/local/lib/docker/cli-plugins/
# Set the binary to be executable
chmod +x /usr/local/lib/docker/cli-plugins/docker-compose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment