11 lines
225 B
Bash
Executable file
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
|