Switch off of docker.io for testing

Let's use the ubi8 container instead of centos:8

Change-Id: I5985c8c3db90024a99e1d55d466b46076be6857a
(cherry picked from commit 83706a92c5)
This commit is contained in:
Alex Schultz 2021-01-12 12:23:39 -07:00
parent 48452b0341
commit 0f38e88772
1 changed files with 2 additions and 2 deletions

View File

@ -32,10 +32,10 @@
state: latest
- name: Pull container image
command: "podman pull centos:8"
command: "podman pull ubi8:latest"
- name: Create test containers
command: "podman run -itd --systemd true --name {{ item }} fedora bash"
command: "podman run -itd --systemd true --name {{ item }} ubi8:latest bash"
with_items:
- podman-container1
- podman-container2