Created
January 18, 2022 19:14
-
-
Save ToshY/6d0d003e3a0d4421d248a27158854f11 to your computer and use it in GitHub Desktop.
docker compose shkoliar/ngrok example
This file contains hidden or 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.9' | |
services: | |
ngrok-app: | |
image: shkoliar/ngrok | |
container_name: ngrok-app | |
ports: | |
- 4040:4040 | |
environment: | |
AUTH_TOKEN: "<ngrok-auth-key>" | |
REGION: "eu" | |
DOMAIN: "app_apache" | |
PORT: 80 | |
DEBUG: "true" | |
# `docker network ls` to get custom bridge network name if used | |
network_mode: app_app-network |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment