(bugfix) make compatible with fish version >=3.3

- cleanup
- minor comments and fixes
This commit is contained in:
2022-04-30 11:31:57 +02:00
parent 8720d0e19b
commit 36ec3bb485
5 changed files with 10 additions and 25 deletions

View File

@ -16,7 +16,10 @@ curl -fsSL https://get.docker.com | sh
#curl -fsSL https://test.docker.com | sh
# install docker-compose
curl -L https://github.com/docker/compose/releases/download/1.25.4/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
# v1
# curl -L https://github.com/docker/compose/releases/download/1.25.4/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
# v2
curl -L https://github.com/docker/compose/releases/download/v2.5.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
usermod -aG docker t31m