bizMark/compose-proxy.yml

23 lines
698 B
YAML

# compose-proxy.yml
# https://git.bizmark.cloud/marc/bizMark.git
services:
proxy:
image: 'jc21/nginx-proxy-manager:latest'
container_name: proxy-manager
restart: unless-stopped
ports:
- '80:80' # Public HTTP
- '443:443' # Public HTTPS
- '81:81' # Admin Web Port
environment:
DB_SQLITE_FILE: "/data/database.sqlite"
DISABLE_IPV6: 'true'
volumes:
# Restriction of filesystem -bizMark
- /home/marc/proxy-manager/data:/data
- /home/marc/proxy-manager/letsencrypt:/etc/letsencrypt
healthcheck:
test: ["CMD-SHELL", "wget -q --spider http://localhost:81 || exit 1"]
interval: 30s
timeout: 10s
retries: 3