Ajout du docker compose de nginx

This commit is contained in:
2024-10-25 22:33:59 +02:00
parent 23aff799f4
commit aacac4b3e8

View File

@@ -0,0 +1,15 @@
version: "3"
services:
app:
container_name: nginx-proxy-manager
image: "jc21/nginx-proxy-manager:latest"
restart: unless-stopped
ports:
# These ports are in format <host-port>:<container-port>
- "80:80" # Public HTTP Port
- "443:443" # Public HTTPS Port
- "81:81" # Admin Web Port
volumes:
- ./data:/data
- ./letsencrypt:/etc/letsencrypt