mirror of
https://ghproxy.net/https://github.com/elementor/wp2static.git
synced 2025-08-30 13:43:54 +08:00
7 lines
208 B
Bash
Executable file
7 lines
208 B
Bash
Executable file
#!/bin/bash
|
|
|
|
containerID=$(sudo docker ps | grep plugindevwp | grep -o -e '^\S*')
|
|
|
|
containerIP=$( sudo docker inspect --format="{{ .NetworkSettings.IPAddress }}" $containerID)
|
|
|
|
ruby run_tests.rb $containerIP
|