1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-28 09:08:50 +02:00
dockerfiles/ngrokd/docker-compose.yml

24 lines
393 B
YAML
Raw Normal View History

2015-12-05 05:37:54 +02:00
data:
build: .
entrypoint: /bin/true
service:
image: debian:jessie
2015-12-04 20:25:31 +02:00
command: >
2015-12-05 05:37:54 +02:00
./ngrokd
2015-12-04 20:25:31 +02:00
-domain=ngrok.foobar.site
-httpAddr=:2080
-httpsAddr=:2443
-tunnelAddr=:4443
-tlsCrt=snakeoil.crt
-tlsKey=snakeoil.key
-log-level=INFO
ports:
- "2080:2080"
- "2443:2443"
- "4443:4443"
2015-12-05 05:37:54 +02:00
volumes_from:
- data
working_dir: /ngrok
2015-12-04 20:25:31 +02:00
restart: always