Archived
1
0
Fork 0
This repository has been archived on 2024-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
dockerfiles/testrun.sh
Joerg Elfring 9e66475149 init
2017-12-09 16:46:17 +01:00

11 lines
225 B
Bash
Executable file

#!/bin/bash
## Run all the images one after another
## and see what happens...
for i in $(grep '^ image:' docker-compose.yaml | cut -c12-)
do
echo
echo "======= $i ======="
docker run --interactive --tty --rm $i
done