This repository has been archived on 2025-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
homelab/Docker/nginx-proxy-manager/docker-compose.yaml
2025-02-03 18:18:56 +01:00

17 lines
374 B
YAML

services:
app:
image: jc21/nginx-proxy-manager:latest
restart: unless-stopped
env_file:
- .env
ports:
- 880:80
- 81:81
- 8443:443
volumes:
- ${NGINX_DATA}:/data
- ${NGINX_LETSENCRYPT}:/etc/letsencrypt
healthcheck:
test: ["CMD", "/usr/bin/check-health"]
interval: 10s
timeout: 3s