mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-25 23:41:04 +00:00
24 lines
623 B
Plaintext
24 lines
623 B
Plaintext
|
# vim: set ft=yaml:
|
||
|
version: '2.1'
|
||
|
|
||
|
services:
|
||
|
|
||
|
# -----------------------------------------------------------------------------------------------
|
||
|
# Ngrok
|
||
|
# -----------------------------------------------------------------------------------------------
|
||
|
ngrok:
|
||
|
image: devilbox/ngrok:0.2
|
||
|
hostname: ngrok
|
||
|
environment:
|
||
|
- HTTP_TUNNELS=${NGROK_HTTP_TUNNELS:-httpd:httpd:80}
|
||
|
- AUTHTOKEN=${NGROK_AUTHTOKEN:-}
|
||
|
ports:
|
||
|
- "${LOCAL_LISTEN_ADDR}${HOST_PORT_NGROK:-4040}:4040"
|
||
|
networks:
|
||
|
app_net:
|
||
|
ipv4_address: 172.16.238.202
|
||
|
depends_on:
|
||
|
- bind
|
||
|
- php
|
||
|
- httpd
|