Add Docker support

This commit is contained in:
Lian Leon
2025-03-17 13:18:40 -04:00
parent 8defce6119
commit b29c8b23d5
4 changed files with 322 additions and 0 deletions

10
docker/compose.yaml Normal file
View File

@@ -0,0 +1,10 @@
services:
web:
build:
context: ..
dockerfile: docker/Dockerfile
ports:
- "8080:80"
volumes:
- ..:/usr/share/nginx/html
restart: unless-stopped