Initial Hello World site

This commit is contained in:
2026-06-19 15:02:49 +00:00
commit bcb354d074
3 changed files with 116 additions and 0 deletions

9
docker-compose.yml Normal file
View File

@@ -0,0 +1,9 @@
services:
www:
image: nginx:alpine
container_name: www-kenjim
ports:
- "8080:80"
volumes:
- ./html:/usr/share/nginx/html:ro
restart: always