criu/tests/run-podman-checkpoint-restore.sh
Adrian Reber 457c2e1c92
Remove unnecessary Requires: criu-libs
Bump release for rebuild

Enable Podman test

Resolves: rhbz#2000882
Signed-off-by: Adrian Reber <areber@redhat.com>
2021-09-03 12:05:08 +02:00

28 lines
582 B
Bash
Executable File

#!/bin/bash
set -eux
ls -la
echo "Start container"
podman --log-level debug run -d quay.io/adrianreber/counter
echo "See which containers are running"
podman ps
echo "Connect to the container"
curl `podman inspect -l | jq -r '.[0].NetworkSettings.IPAddress'`:8088
echo "Checkpoint container"
podman --log-level debug container checkpoint -l
podman ps -a
echo "Restore container"
podman --log-level debug container restore -l
podman ps -a
echo "Check if we can connect to the restored container"
curl `podman inspect -l | jq -r '.[0].NetworkSettings.IPAddress'`:8088
ls -la