name: npm services: npm: image: 'jc21/nginx-proxy-manager:latest' restart: unless-stopped container_name: npm ports: # These ports are in format : - '70:80' # Public HTTP Port - '743:443' # Public HTTPS Port - '71:81' # Admin Web Port # Add any other Stream port you want to expose # - '21:21' # FTP environment: TZ: "Europe/London" # Uncomment this if you want to change the location of # the SQLite DB file within the container # DB_SQLITE_FILE: "/data/database.sqlite" # Uncomment this if IPv6 is not enabled on your host DISABLE_IPV6: 'true' INITIAL_ADMIN_EMAIL: something@example.com INITIAL_ADMIN_PASSWORD: secure_password volumes: - /opt/npm/data:/data - /opt/npm/letsencrypt:/etc/letsencrypt healthcheck: test: ["CMD", "/usr/bin/check-health"] interval: 10s timeout: 3s