Add Dockerfile and docker-compose.yml to run site locally

This commit is contained in:
Hermes Agent
2026-04-19 22:08:43 +00:00
parent f683564623
commit 3ec9f5e784
2 changed files with 10 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
FROM nginx:alpine
COPY . /usr/share/nginx/html
EXPOSE 8080
CMD ["nginx", "-g", "daemon off;"]
+6
View File
@@ -0,0 +1,6 @@
services:
web:
build: .
ports:
- "8080:80"
restart: unless-stopped