Skip to content

Instantly share code, notes, and snippets.

@kiddtang
Last active December 21, 2023 09:25
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save kiddtang/adb6385d8faa86d8ee2e2a45ed32b5bd to your computer and use it in GitHub Desktop.
Save kiddtang/adb6385d8faa86d8ee2e2a45ed32b5bd to your computer and use it in GitHub Desktop.
proxy-manager
APP_PORT=48080
FORWARD_DB_PORT=43306
FORWARD_REDIS_PORT=46379
FORWARD_MEILISEARCH_PORT=47700
FORWARD_MAILHOG_PORT=41025
FORWARD_MAILHOG_DASHBOARD_PORT=48025
version: "3"
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
restart: always
ports:
# Public HTTP Port:
- '80:80'
# Public HTTPS Port:
- '443:443'
# Admin Web Port:
- '81:81'
environment:
# These are the settings to access your db
DB_SQLITE_FILE: "/data/database.sqlite"
# Uncomment this if IPv6 is not enabled on your host
DISABLE_IPV6: 'true'
volumes:
- ./data:/data
- ./letsencrypt:/etc/letsencrypt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment