From Fedora Project Wiki

< User:Roshi‎ | QA/AtomicTests

Revision as of 15:40, 22 September 2015 by Maxamillion (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This is a simple testcase to determine whether the latest Fedora docker image run properly.

Note.png
Prerequisite
This testcase assumes you have already ran the boot test.
  1. Ensure you have a booted working Atomic Host and have downloaded (using curl) the latest docker image
  1. Download the latest image using curl like so:
 curl http://alt.fedoraproject.org/pub/alt/stage/23_Beta_RC1/Docker/x86_64/Fedora-Docker-Base-23_Beta-20150915.x86_64.tar.xz > F23.tar.xz
  1. Load the tar.gz docker image into the docker daemon like so:
 docker load -i F23.tar.xz
  1. Run a dockerized application using the tag from the image
  2. Example:
 docker run -it --rm Fedora-Docker-Base-23_Beta-20150915.x86_64 true && echo "PASS" || echo "FAIL"

results=

  1. Output from the example command should resemble:
PASS