Created
February 14, 2024 14:22
-
-
Save skeltonmod/c8241d93eb3ab1cf7d6c1f826d12e9b3 to your computer and use it in GitHub Desktop.
docker-compose.override.yml
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
# vim: set ft=yaml: | |
--- | |
version: '2.3' | |
services: | |
# ----------------------------------------------------------------------------------------------- | |
# Ngrok | |
# ----------------------------------------------------------------------------------------------- | |
ngrok: | |
image: devilbox/ngrok:0.7 | |
hostname: ngrok | |
environment: | |
- HTTP_TUNNELS=${NGROK_HTTP_TUNNELS:-httpd:httpd:80} | |
- AUTHTOKEN=${NGROK_AUTHTOKEN:-} | |
- REGION=${NGROK_REGION:-us} | |
ports: | |
- "${LOCAL_LISTEN_ADDR}${HOST_PORT_NGROK:-4040}:4040" | |
networks: | |
app_net: | |
ipv4_address: 172.16.238.202 | |
depends_on: | |
- bind | |
- php | |
- httpd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment