Skip to content

Instantly share code, notes, and snippets.

@rmchale
Created April 10, 2020 17:08
Show Gist options
  • Save rmchale/ba5f9e9af494d519583e0bc7049160b2 to your computer and use it in GitHub Desktop.
Save rmchale/ba5f9e9af494d519583e0bc7049160b2 to your computer and use it in GitHub Desktop.

BROWSER

Open your browser to: http://localhost:8088

RUN

 docker run --rm -it --name my-apache-app -p 8088:80 -v "$PWD/docs":/usr/local/apache2/htdocs/ httpd:2.4
<html>
Test
<table class="mdl-data-table mdl-js-data-table mdl-data-table--selectable mdl-shadow--2dp">
<thead>
<tr>
<th class="mdl-data-table__cell--non-numeric">Material</th>
<th>Quantity</th>
<th>Unit price</th>
</tr>
</thead>
<tbody>
<tr>
<td class="mdl-data-table__cell--non-numeric">Acrylic (Transparent)</td>
<td>25</td>
<td>$2.90</td>
</tr>
<tr>
<td class="mdl-data-table__cell--non-numeric">Plywood (Birch)</td>
<td>50</td>
<td>$1.25</td>
</tr>
<tr>
<td class="mdl-data-table__cell--non-numeric">Laminate (Gold on Blue)</td>
<td>10</td>
<td>$2.35</td>
</tr>
</tbody>
</table>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment