7f1835c978
This script, when run, will boot up a Container Linux VM (via vagrant) with a specific version of Docker installed, and then run a login, push and pull test against the host machine's Quay instance.
4 lines
105 B
Text
4 lines
105 B
Text
FROM quay.io/quay/busybox
|
|
RUN date > somefile
|
|
RUN date +%s%N > anotherfile
|
|
RUN date +"%T.%N" > thirdfile
|