-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ngrok version 3 stops working on Jan 15th 2024 #16
Comments
It surprised me this morning. Tried to rebuild devilbox/ngrok and got error /bin/sh: ARCH: parameter not set For quick fix created own files. ./devilbox/data/ngrok/Dockerfile from here In Docker file ignore ${ARCH} end replace with architecture string. Example for OSX Docker Desktop. In docker-compose-override.yml ngrok:
# image: devilbox/ngrok
build:
context: ./data/ngrok
dockerfile: Dockerfile
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.204
depends_on:
- bind
- php
- httpd test new build with |
That works. But you need to change ./devilbox/data/ngrok/data/docker-entrypoint.sh Beetween "REQUIRED ENV VARIABLES" and "SPECIFY REGION" you need to add
Because the default configuration of ngrok 3 had that parameters. |
Looks like this image used by the Devilbox is running ngrok version 3.0. I've had the following email from the ngrok team:
The text was updated successfully, but these errors were encountered: