i hate nginx

This commit is contained in:
2025-06-01 03:34:22 +02:00
parent db0fe61673
commit d8b4bc33da
2 changed files with 36 additions and 9 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
version: '3.8'
services:
nginx:
image: nginx:alpine
container_name: website-nginx
ports:
- "8097:80"
volumes:
- /opt/docker/Website:/usr/share/nginx/html:ro
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
restart: unless-stopped