Initial commit

This commit is contained in:
2026-02-05 13:07:48 +08:00
commit 326ff5d9cb
2 changed files with 71 additions and 0 deletions

9
docker-compose.yml Normal file
View File

@@ -0,0 +1,9 @@
version: '3'
services:
web:
image: nginx:alpine
ports:
- "8081:80"
volumes:
- ./:/usr/share/nginx/html
restart: always