mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-19 12:57:52 +00:00
26 lines
662 B
YAML
26 lines
662 B
YAML
# vim: set ft=yaml:
|
|
---
|
|
version: '2.3'
|
|
|
|
services:
|
|
|
|
# -----------------------------------------------------------------------------------------------
|
|
# Ngrok
|
|
# -----------------------------------------------------------------------------------------------
|
|
ngrok:
|
|
image: devilbox/ngrok:0.3
|
|
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
|