Standardize all compose files to .yml extension

This commit is contained in:
Kevin Douglas
2026-04-27 10:43:47 -04:00
parent 02b39d78ea
commit 0b85e9da80
21 changed files with 0 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
version: "3.8"
services:
nginx-proxy-manager:
container_name: nginx-proxy-manager
image: jc21/nginx-proxy-manager:latest
restart: unless-stopped
ports:
- "80:80/tcp" # HTTP traffic
- "443:443/tcp" # HTTPS traffic + certs
- "81:81/tcp" # Admin UI (change if you want to hide it)
environment:
TZ: America/New_York
SUPPRESS_NO_CONFIG_WARNING: "1"
NODE_ENV: production
NODE_OPTIONS: --openssl-legacy-provider
# Add any custom env if you use CrowdSec or other integrations
volumes:
- "/data/compose/12/data:/data"
- "/data/compose/12/letsencrypt:/etc/letsencrypt"
working_dir: "/app"
entrypoint: ["/init"]
logging:
driver: json-file