From c5627651ffbd6a51ff4eb7d3d2115e9c78bd8732 Mon Sep 17 00:00:00 2001 From: Daniel Covington Date: Thu, 4 Jun 2026 11:59:09 -0400 Subject: [PATCH] init --- docker-compose.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 docker-compose.yml 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