18 lines
582 B
Bash
Executable file
18 lines
582 B
Bash
Executable file
#!/bin/sh
|
|
|
|
podman rm -f general-cachyos
|
|
podman rm -f general
|
|
podman rm -f development
|
|
podman rm -f lbry
|
|
|
|
distrobox assemble create --file /etc/distrobox.ini
|
|
|
|
podman pull ghcr.io/andersrh/containers/fedora-toolbox/general:main
|
|
distrobox create -i ghcr.io/andersrh/containers/fedora-toolbox/general:main --home ~/containers/general -n general
|
|
|
|
distrobox enter general -- distrobox-export --app x2goclient
|
|
|
|
distrobox enter development -- distrobox-export --app qtcreator
|
|
distrobox enter development -- distrobox-export --app codium
|
|
|
|
distrobox enter lbry -- distrobox-export --app lbry
|