mirror of
https://ghproxy.net/https://github.com/elementor/wp2static.git
synced 2025-09-01 10:43:18 +08:00
11 lines
293 B
Bash
Executable file
11 lines
293 B
Bash
Executable file
#!/bin/bash
|
|
echo 'what is running now?'
|
|
docker ps
|
|
|
|
containerID=$(sudo docker ps | grep plugindevwp | grep -o -e '^\S*')
|
|
|
|
containerIP=$( sudo docker inspect --format="{{ .NetworkSettings.IPAddress }}" $containerID)
|
|
|
|
gem install bundler
|
|
bundle install
|
|
bundle exec ruby run_tests.rb $containerIP
|