- testing container is starting to work on macos - still need to do testing for linux machines
11 lines
202 B
Bash
Executable File
11 lines
202 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
IMAGE=packagetest
|
|
CONTAINER=packagetest
|
|
MACHINENAME=podman-machine-default
|
|
|
|
ssh-keygen -R "[127.0.0.1]:2222"
|
|
podman stop $CONTAINER
|
|
podman rm $IMAGE
|
|
podman machine stop $MACHINENAME
|