docker-vulnerable-dvwa/main.sh

14 lines
178 B
Bash
Raw Normal View History

2017-01-02 20:02:09 +00:00
#!/bin/bash
echo '[+] Starting mysql...'
service mysql start
echo '[+] Starting apache'
service apache2 start
while true
do
tail -f /var/log/apache2/*.log
2017-01-02 21:03:54 +00:00
exit 0
2017-01-02 20:02:09 +00:00
done