This commit is contained in:
ElevenNotes
2024-05-13 23:02:29 +02:00
parent 54ebcfc329
commit c7d6fee50c
6 changed files with 72 additions and 13 deletions

22
compose.yaml Normal file
View File

@@ -0,0 +1,22 @@
version: "3.8"
services:
nginx:
image: "11notes/nginx:1.26.0"
container_name: "nginx"
environment:
TZ: Europe/Zurich
ports:
- "8443:8443/tcp"
volumes:
- "etc:/nginx/etc"
- "www:/nginx/www"
- "ssl:/nginx/ssl"
networks:
- nginx
restart: always
volumes:
etc:
www:
ssl:
networks:
nginx: