Skip to content

Instantly share code, notes, and snippets.

@skeltonmod
Created February 14, 2024 14:22
Show Gist options
  • Save skeltonmod/c8241d93eb3ab1cf7d6c1f826d12e9b3 to your computer and use it in GitHub Desktop.
Save skeltonmod/c8241d93eb3ab1cf7d6c1f826d12e9b3 to your computer and use it in GitHub Desktop.
docker-compose.override.yml
# 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