Sign inSign up

felipecwb/ngrok

By felipecwb

•Updated over 7 years ago

ngrok.com Public URLs for export localhost / private applications

Image
0

324

felipecwb/ngrok repository overview

⁠felipecwb/ngrok

Checkout on docker hub⁠.

Export your internal applications with ngrok⁠.
You can read more on ngrok docs⁠

This docker image uses a non-root user ngrok as default.

The configuration file is encountered: /home/ngrok/.ngrok2/ngrok.yml
You just need to overwrite to get the new configurations.

The entrypoint is the ngrok binary.

⁠Examples:

docker run:

docker run --rm -it --link app -p 4040:4040 felipecwb/ngrok:latest http app:80

docker-compose.yml:

version: "3.7"

services:
    app:
        image: myself/myapp:latest
        ports:
            - 80:8080

    ngrok:
        image: felipecwb/ngrok:latest
        command: http app:8080
        ports:
            - 4040:4040

Tag summary

Content type

Image

Digest

Size

16.8 MB

Last updated

over 7 years ago

docker pull felipecwb/ngrok