mirror of
https://ghproxy.net/https://github.com/elementor/wp2static.git
synced 2025-08-30 19:39:43 +08:00
8 lines
208 B
Bash
8 lines
208 B
Bash
|
#!/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
|