add podman installation
This commit is contained in:
parent
76655b4646
commit
84b0b2ae20
2 changed files with 15 additions and 1 deletions
|
@ -9,16 +9,18 @@ cd install-stuff/
|
||||||
chmod 700 ./*.bash
|
chmod 700 ./*.bash
|
||||||
./install-claws-mail.bash
|
./install-claws-mail.bash
|
||||||
./install-fish.bash
|
./install-fish.bash
|
||||||
./install-librewolf.bash
|
|
||||||
./install-misc.sh
|
./install-misc.sh
|
||||||
./install-qemu-libvirt.bash
|
./install-qemu-libvirt.bash
|
||||||
./install-rust.sh
|
./install-rust.sh
|
||||||
./install-steam.bash
|
./install-steam.bash
|
||||||
|
# must go after steam
|
||||||
|
./install-librewolf.bash
|
||||||
./install-vs-code.bash
|
./install-vs-code.bash
|
||||||
./install-fonts.bash
|
./install-fonts.bash
|
||||||
./install-yt-music.bash
|
./install-yt-music.bash
|
||||||
./install-vesktop.bash
|
./install-vesktop.bash
|
||||||
./install-swayfx.bash
|
./install-swayfx.bash
|
||||||
|
./install-podman.sh
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
cd ./dotfiles
|
cd ./dotfiles
|
||||||
|
|
12
install-stuff/install-podman.sh
Executable file
12
install-stuff/install-podman.sh
Executable file
|
@ -0,0 +1,12 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
command_exists() { type "$1" &>/dev/null; }
|
||||||
|
|
||||||
|
if command_exists "dnf"; then
|
||||||
|
sudo dnf install podman -y
|
||||||
|
systemctl enable --now --user podman
|
||||||
|
|
||||||
|
# install docker-compose
|
||||||
|
sudo dnf config-manager addrepo --from-repofile https://download.docker.com/linux/fedora/docker-ce.repo
|
||||||
|
sudo dnf install docker-compose
|
||||||
|
fi
|
Loading…
Add table
Add a link
Reference in a new issue