Building Docker containers for compatibility tests
========================================================

Remark: omit sudo command if executing as root

= Build Apache HTTPD image
---
sudo docker build -t hc-tests-httpd apache-httpd
---

= Build Nginx image
---
sudo docker build -t hc-tests-nginx nginx
---

= Build HTTPBIN image
---
sudo docker build -t hc-tests-httpbin httpbin
---

= Start containers

---
sudo docker-compose up
---

= Execute H2 compatibility tests

---
H2CompatibilityTest http://localhost:8080 APACHE-HTTPD
H2CompatibilityTest http://localhost:8081 NGINX