Skip to content

Commit fcfc163

Browse files
committed
Update ngrok to 3.12.0
Fixes #9
1 parent d50c258 commit fcfc163

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*~
22
/.env
3+
.DS_Store

Dockerfile.server

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM alpine:3.17.1
22

33
RUN apk add --no-cache python3 py3-pip curl ca-certificates openssh-server rsync \
44
&& apk add --no-cache --virtual .build-deps git \
5-
&& curl -L -O https://bin.equinox.io/a/jYLcLYYDPtj/ngrok-2.3.17-linux-amd64.zip \
6-
&& unzip ngrok-2.3.17-linux-amd64.zip \
5+
&& curl -L -O https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-amd64.tgz \
6+
&& tar -xzf ngrok-v3-stable-linux-amd64.tgz \
77
&& install -v -D ngrok /usr/local/bin/ngrok \
88
&& pip install supervisor
99
RUN pip install git+https://github.com/suda/supervisord-dependent-startup.git \

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.6'
22
services:
33
dvsync-server:
4-
image: 'quay.io/suda/dvsync-server'
4+
image: 'ghcr.io/suda/dvsync-server'
55
build:
66
context: .
77
dockerfile: Dockerfile.server
@@ -11,7 +11,7 @@ services:
1111
- ./out:/data
1212

1313
dvsync-client:
14-
image: 'quay.io/suda/dvsync-client'
14+
image: 'ghcr.io/suda/dvsync-client'
1515
build:
1616
context: .
1717
dockerfile: Dockerfile.client

etc/supervisord.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ stderr_logfile=/dev/fd/1
4545
stderr_logfile_maxbytes=0
4646

4747
[program:ngrok]
48-
command=/usr/local/bin/ngrok tcp 22 --log stdout --log-format json --config /root/.ngrok2/ngrok.yml
48+
command=/usr/local/bin/ngrok tcp 22 --log stdout --log-format json --config /root/.config/ngrok/ngrok.yml
4949
dependent_startup=true
5050
wait_for_services=sshd:running
5151
autostart=false

0 commit comments

Comments
 (0)