initial commit

This commit is contained in:
2025-08-25 18:00:07 +01:00
commit da44e79923

11
docker-compose.yml Normal file
View File

@@ -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