move nginx
Some checks failed
deploy apps / deploy (push) Has been cancelled

This commit is contained in:
Elias Ahokas
2025-11-12 17:54:08 +02:00
commit 842884164d
6 changed files with 89 additions and 0 deletions

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
nginx:
image: nginx:alpine
restart: unless-stopped
volumes:
- ./html:/usr/share/nginx/html:ro
- ./conf/nginx.conf:/etc/nginx/nginx.conf:ro
expose:
- "80"
ports:
- "25565:25565"