From 6d78f73023b3c6d2df6d5eed42fad2192a89f06d Mon Sep 17 00:00:00 2001 From: Guillem Hernandez Sola Date: Fri, 15 Nov 2024 19:58:40 +0100 Subject: [PATCH] Updated versions compose and machine --- .idea/.gitignore | 3 +++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/startusingdocker.iml | 9 +++++++++ .idea/vcs.xml | 6 ++++++ docker.sh | 4 ++-- 6 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/startusingdocker.iml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..8633114 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..e0ee58d --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/startusingdocker.iml b/.idea/startusingdocker.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/startusingdocker.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/docker.sh b/docker.sh index 56f1286..2712da8 100644 --- a/docker.sh +++ b/docker.sh @@ -15,11 +15,11 @@ curl -fsSL get.docker.com -o get-docker.sh sh get-docker.sh # install docker-compose -curl -L "https://github.com/docker/compose/releases/download/1.21.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && \ +curl -L "https://github.com/docker/compose/releases/download/2.30.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && \ chmod +x /usr/local/bin/docker-compose # install docker-machine -curl -L "https://github.com/docker/machine/releases/download/v0.15.0/docker-machine-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-machine && \ +curl -L "https://github.com/docker/machine/releases/download/v0.16.2/docker-machine-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-machine && \ chmod +x /usr/local/bin/docker-machine usermod -G docker vagrant