Add docker-compose.yml and update README.md

This commit is contained in:
Antigravity
2026-06-08 11:02:20 +00:00
parent 7efa005892
commit 41661dd95b
2 changed files with 10 additions and 14 deletions

8
docker-compose.yml Normal file
View File

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