Skip to content

Commit

Permalink
Remove PHP version detection
Browse files Browse the repository at this point in the history
  • Loading branch information
mevdschee committed Oct 14, 2018
1 parent d9475e6 commit 64e9256
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions docker/debian9/run.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/bin/bash
PHP=$(php -r 'echo explode("-",phpversion())[0];')
echo "================================================"
echo " Debian 9 (PHP $PHP)"
echo " Debian 9 (PHP 7.0)"
echo "================================================"

echo -n "[1/4] Starting MariaDB 10.1 ..... "
Expand Down
3 changes: 1 addition & 2 deletions docker/ubuntu16/run.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/bin/bash
PHP=$(php -r 'echo explode("-",phpversion())[0];')
echo "================================================"
echo " Ubuntu 16.04 (PHP $PHP)"
echo " Ubuntu 16.04 (PHP 7.0)"
echo "================================================"

echo -n "[1/4] Starting MariaDB 10.0 ..... "
Expand Down
3 changes: 1 addition & 2 deletions docker/ubuntu18/run.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/bin/bash
PHP=$(php -r 'echo explode("-",phpversion())[0];')
echo "================================================"
echo " Ubuntu 18.04 (PHP $PHP)"
echo " Ubuntu 18.04 (PHP 7.2)"
echo "================================================"

echo -n "[1/4] Starting MySQL 5.7 ........ "
Expand Down

0 comments on commit 64e9256

Please sign in to comment.