Created
June 30, 2015 16:47
-
-
Save lmakarov/54302df8ecfc87b36320 to your computer and use it in GitHub Desktop.
Install docker-compose in boot2docker 1.7.0+
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin.sh | |
DOCKER_COMPOSE_VERSION=1.3.0 | |
# Download docker-compose to the permanent storage | |
echo 'Downloading docker-compose to the permanent VM storage...' | |
sudo mkdir -p /var/lib/boot2docker/bin | |
sudo curl -sL https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` -o /var/lib/boot2docker/bin/docker-compose | |
sudo chmod +x /var/lib/boot2docker/bin/docker-compose | |
sudo ln -sf /var/lib/boot2docker/bin/docker-compose /usr/local/bin/docker-compose | |
# Making the symlink persistent via bootlocal.sh | |
echo 'Writing to bootlocal.sh to make docker-compose available on every boot...' | |
cat <<SCRIPT | sudo tee -a /var/lib/boot2docker/bootlocal.sh > /dev/null | |
# docker-compose | |
sudo ln -sf /var/lib/boot2docker/bin/docker-compose /usr/local/bin/docker-compose | |
SCRIPT | |
sudo chmod +x /var/lib/boot2docker/bootlocal.sh | |
echo 'Launching docker-compose...' | |
docker-compose --version |
Sorry, I don't even remember why I created this script in the first place. It is 6 years old...
Boot2Docker is EOL since last year.
There is docker-compose v2 available now, which is part of the docker cli (docker compose ...
):
Sorry, I don't even remember why I created this script in the first place. It is 6 years old...
Boot2Docker is EOL since last year.
There is docker-compose v2 available now, which is part of the docker cli (docker compose ...
):
oh, ok. thanks for the answer. I ended up installing the docker in the server since it is a linux remote server :D
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I got the same error