-
-
Save kiddtang/adb6385d8faa86d8ee2e2a45ed32b5bd to your computer and use it in GitHub Desktop.
proxy-manager
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
APP_PORT=48080 | |
FORWARD_DB_PORT=43306 | |
FORWARD_REDIS_PORT=46379 | |
FORWARD_MEILISEARCH_PORT=47700 | |
FORWARD_MAILHOG_PORT=41025 | |
FORWARD_MAILHOG_DASHBOARD_PORT=48025 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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