Skip to content

Commit

Permalink
feat: added update and docker compose plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
maaasyn committed May 9, 2024
1 parent 61ffea4 commit b676780
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .ubuntu/setup-copy-paste.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
echo "UBUNTU" &&\
sudo apt update -y &&\
sudo apt upgrade -y &&\

echo "DOCKER" &&\
sudo apt update &&\
sudo apt install docker.io -y &&\
Expand All @@ -9,6 +13,13 @@ echo "DOCKER-COMPOSE" &&\
sudo curl -L https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose &&\
sudo chmod +x /usr/local/bin/docker-compose &&\

echo "DOCKER COMPOSE PLUGIN" &&\
DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME/.docker} &&\
mkdir -p $DOCKER_CONFIG/cli-plugins &&\
curl -SL https://github.com/docker/compose/releases/download/v2.27.0/docker-compose-linux-x86_64 -o $DOCKER_CONFIG/cli-plugins/docker-compose &&\
chmod +x $DOCKER_CONFIG/cli-plugins/docker-compose &&\
docker-compose --version &&\

echo "RUST" &&\
sudo apt install build-essential pkg-config libssl-dev -y &&\
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh &&\
Expand Down

0 comments on commit b676780

Please sign in to comment.