Skip to content

Commit

Permalink
Merge pull request #49 from mattrayner/test
Browse files Browse the repository at this point in the history
Fix Markdown issue
  • Loading branch information
mattrayner committed Mar 12, 2019
2 parents 243f5bf + 67fc90d commit daef707
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ There are 4 main 'versions' of the docker image. The table below shows the diffe

Component | `latest-1404` | `latest-1604` | `latest-1804`
---|---|---|---
[Apache][apache] | `2.4.7` | `2.4.18` | `2.4.18`
[MySQL][mysql] | `5.5.61` | `5.7.23` | `5.7.23`
[PHP][php] | `7.2.9` | `7.2.9` | `7.2.9`
[Apache][apache] | `2.4.7` | `2.4.29` | `2.4.18`
[MySQL][mysql] | `5.5.62` | `5.7.25` | `5.7.25`
[PHP][php] | `7.3.3` | `7.3.3` | `7.3.3`
[phpMyAdmin][phpmyadmin] | `4.8.5` | `4.8.5` | `4.8.5`


Expand Down
2 changes: 1 addition & 1 deletion app/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</article>
<section>
<pre>
OS: <?php echo php_uname(); ?><br/>
OS: <?php echo php_uname('s'); ?><br/>
Apache: <?php echo apache_get_version(); ?><br/>
MySQL Version: <?php echo $db->getAttribute( PDO::ATTR_SERVER_VERSION ); ?><br/>
PHP Version: <?php echo phpversion(); ?><br/>
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ sut:

web1804-php7:
build: .
dockerfile: ./1804/Dockerfile-php7
dockerfile: ./1804/Dockerfile
ports:
- "3000:80"

web1604-php7:
build: .
dockerfile: ./1604/Dockerfile-php7
dockerfile: ./1604/Dockerfile
ports:
- "3001:80"

web1404-php7:
build: .
dockerfile: ./1404/Dockerfile-php7
dockerfile: ./1404/Dockerfile
ports:
- "3002:80"

0 comments on commit daef707

Please sign in to comment.