2025-03-09 00:19:28 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
|
2025-03-09 01:21:21 +01:00
|
|
|
function terminate_and_remove() {
|
|
|
|
echo Cleaning old container...
|
|
|
|
podman stop creatures-buildenv
|
|
|
|
podman rm creatures-buildenv
|
|
|
|
}
|
|
|
|
|
|
|
|
podman container exists creatures-buildenv && terminate_and_remove
|
|
|
|
|
2025-03-09 00:19:28 +01:00
|
|
|
toolbox create --image code.helloryan.se/creatures/buildenv/combined-amd64-fedora-41:latest creatures-buildenv
|