You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
346 B
Bash
11 lines
346 B
Bash
#!/usr/bin/env bash
|
|
|
|
curl -fsSL https://get.docker.com/ | sh
|
|
sudo groupadd docker
|
|
sudo usermod -aG docker ${USER}
|
|
sudo systemctl restart docker
|
|
|
|
curl -L https://github.com/docker/compose/releases/download/1.25.4/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
|
|
chmod +x /usr/local/bin/docker-compose
|
|
docker-compose --version
|