ngrok docker image with config template
4.1K
Image to run ngrok agent with config file
This image can be run inside the Shopify project. To run you need to pass the following environment variables:
NGROK_AUTHTOKEN=your-token
NGROK_ADDRESS=local-adsress-and-port
NGROK_SUBDOMAIN=your-subdomain
$ docker run -e NGROK_AUTHTOKEN=token -e NGROK_ADDRESS=localhost:80 -e NGROK_SUBDOMAIN=aw-test aheadworks/ngrok:1.0
version: "3.4"
services:
web:
image: nginx
volumes:
- ./templates:/etc/nginx/templates
ports:
- "8080:80"
environment:
- NGINX_HOST=foobar.com
- NGINX_PORT=80
ngrok:
image: aheadworks/ngrok
restart: "unless-stopped"
environment:
NGROK_AUTHTOKEN: token
NGROK_ADDRESS: localhost:80
NGROK_SUBDOMAIN_MAIN: aw-test
volumes:
- ./ngrok.yml:/etc/ngrok/ngrok.template.yml:ro
depends_on:
- web
Content type
Image
Digest
sha256:a31d278c0…
Size
57.1 MB
Last updated
about 3 years ago
docker pull aheadworks/ngrok