🎉 Added lazydocker
This commit is contained in:
parent
166f9ed947
commit
ab40739ca1
@ -7,6 +7,7 @@ set(TOOLS
|
|||||||
"mozilla/sccache"
|
"mozilla/sccache"
|
||||||
"muesli/duf"
|
"muesli/duf"
|
||||||
"jesseduffield/lazygit"
|
"jesseduffield/lazygit"
|
||||||
|
"jesseduffield/lazydocker"
|
||||||
)
|
)
|
||||||
|
|
||||||
set(EXTRA_TOOLS
|
set(EXTRA_TOOLS
|
||||||
|
@ -28,6 +28,12 @@ Repo: https://github.com/jesseduffield/lazygit
|
|||||||
|
|
||||||
`curl "https://raw.githubusercontent.com/AnotherFoxGuy/ci-scripts/main/install-lazygit.sh" | sudo bash`
|
`curl "https://raw.githubusercontent.com/AnotherFoxGuy/ci-scripts/main/install-lazygit.sh" | sudo bash`
|
||||||
|
|
||||||
|
### lazydocker
|
||||||
|
|
||||||
|
Repo: https://github.com/jesseduffield/lazydocker
|
||||||
|
|
||||||
|
`curl "https://raw.githubusercontent.com/AnotherFoxGuy/ci-scripts/main/install-lazydocker.sh" | sudo bash`
|
||||||
|
|
||||||
### butler
|
### butler
|
||||||
|
|
||||||
Repo: https://github.com/itchio/butler
|
Repo: https://github.com/itchio/butler
|
||||||
|
7
install-lazydocker.sh
Normal file
7
install-lazydocker.sh
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
mkdir -p /tmp/lazydocker
|
||||||
|
wget "https://github.com/jesseduffield/lazydocker/releases/download/v0.12/lazydocker_0.12_Linux_x86_64.tar.gz" -nv -O /tmp/lazydocker.tar.gz
|
||||||
|
tar xvzf /tmp/lazydocker.tar.gz -C /tmp/lazydocker
|
||||||
|
install -m 755 /tmp/lazydocker/lazydocker /usr/local/bin/
|
7
templates/install-lazydocker.sh.in
Normal file
7
templates/install-lazydocker.sh.in
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
mkdir -p /tmp/lazydocker
|
||||||
|
wget "https://github.com/jesseduffield/lazydocker/releases/download/v@VERSION@/lazydocker_@VERSION@_Linux_x86_64.tar.gz" -nv -O /tmp/lazydocker.tar.gz
|
||||||
|
tar xvzf /tmp/lazydocker.tar.gz -C /tmp/lazydocker
|
||||||
|
install -m 755 /tmp/lazydocker/lazydocker /usr/local/bin/
|
Loading…
x
Reference in New Issue
Block a user