13 lines
326 B
Bash
Executable File
13 lines
326 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
|
|
function terminate_and_remove() {
|
|
echo Cleaning old container...
|
|
podman stop creatures-buildenv
|
|
podman rm creatures-buildenv
|
|
}
|
|
|
|
podman container exists creatures-buildenv && terminate_and_remove
|
|
|
|
toolbox create --image code.helloryan.se/creatures/buildenv/combined-amd64-fedora-41:latest creatures-buildenv
|