commit c5627651ffbd6a51ff4eb7d3d2115e9c78bd8732 Author: Daniel Covington Date: Thu Jun 4 11:59:09 2026 -0400 init diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..59e32a6 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,19 @@ +services: + apache-proxy: + image: httpd:2.4 + container_name: apache-proxy + restart: unless-stopped + + ports: + - "80:80" + + volumes: + - ./httpd.conf:/usr/local/apache2/conf/httpd.conf:ro + - ./vhosts.conf:/usr/local/apache2/conf/extra/vhosts.conf:ro + + networks: + - proxy + +networks: + proxy: + external: true \ No newline at end of file