initial commit

This commit is contained in:
2023-10-18 15:19:16 +00:00
commit 972682dc9b
8 changed files with 258 additions and 0 deletions
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
docker run -d \
--name nginx \
-p 80:80 \
-p 443:443 \
-v ./data/nginx:/etc/nginx/conf.d \
-v ./data/certbot/conf:/etc/letsencrypt \
-v ./data/certbot/www:/var/www/certbot \
-v ./data/lobby-web:/usr/share/nginx/html \
--restart=unless-stopped \
--network=dittmar.dev \
nginx