8 lines
126 B
Bash
Executable File
8 lines
126 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for i in $(seq 1 20);
|
|
do
|
|
echo $i
|
|
docker run -d -p 5800 -e "TARGET_URL=https://www.google.com" lasttest
|
|
done
|