mirror of
https://github.com/coreos/fedora-coreos-config.git
synced 2026-02-05 09:45:30 +01:00
19 lines
506 B
Bash
Executable File
19 lines
506 B
Bash
Executable File
#!/bin/bash
|
|
## kola:
|
|
## # Must not run this test with another podman test
|
|
## exclusive: true
|
|
## # We only ship moby/docker in FCOS
|
|
## distros: fcos
|
|
## # This test pulls a container image from remote sources.
|
|
## tags: "platform-independent needs-internet"
|
|
## description: Verify that running a basic container with docker works.
|
|
|
|
set -xeuo pipefail
|
|
|
|
# shellcheck disable=SC1091
|
|
. "$KOLA_EXT_DATA/commonlib.sh"
|
|
|
|
docker run --rm quay.io/fedora/fedora:40 true
|
|
|
|
ok "basic docker run successfully"
|