commit da44e79923000c20b96b75c209114eef1d4714ae Author: Ade Thompson Date: Mon Aug 25 18:00:07 2025 +0100 initial commit diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..f1812f3 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +version: "3.9" + +services: + web: + image: nginx:alpine + container_name: hello-nginx + restart: unless-stopped + ports: + - "8080:80" + volumes: + - ./html:/usr/share/nginx/html:ro \ No newline at end of file