Base image for running Roundup tests
1.2K
Docker base image for running Roundup tests.
This image is meant as a base image. Write your tests as usual, and add the following Dockerfile:
FROM publysher/roundup:latest
COPY *.sh /tests
Containers based on this Dockerfile will automatically run all the tests in the /tests directory.
You can add a file called /tests/links.txt containing SERVICE PORT lines. Before the tests start, the
container will wait until that port is available.
For example, look at the following links.txt
my_database 5432
my_httpd 8000
When this file is added as /tests/links.txt, the container will run nc -z on my_database:5432 and
my_httpd:8000 until they become available.
Content type
Image
Digest
Size
2.7 MB
Last updated
over 8 years ago
docker pull publysher/roundup