Skip to content

Commit c00d98b

Browse files
bschaatsbergenmowirth
authored andcommitted
fix: use the official ngrok image (runatlantis#5681)
Signed-off-by: Bruno Schaatsbergen <[email protected]> Signed-off-by: Moritz Wirth <[email protected]>
1 parent b4f3d63 commit c00d98b

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Docker compose is set up to start an atlantis container and ngrok container in t
5353
e.g.
5454

5555
```sh
56-
NGROK_AUTH=1234567890
56+
NGROK_AUTHTOKEN=1234567890
5757
5858
ATLANTIS_GH_APP_ID=123
5959
ATLANTIS_GH_APP_KEY_FILE="/.ssh/somekey.pem"

docker-compose.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# Note: This file is only used for Atlantis local development
22
services:
33
ngrok:
4-
image: wernight/ngrok:latest@sha256:d211f29ebcfe5f4e72df4fa8bdd9a667886e127d7fcb1be4a1af5ad83a8a1b77
4+
image: ngrok/ngrok:latest@sha256:0dbf30ec036f2369d3b9018a8287aa2414deb90ccf44536cb2fcfd238b3d4f70
55
ports:
66
- 4040:4040
7-
environment:
8-
# https://dashboard.ngrok.com/get-started/your-authtoken
9-
# NGROK_AUTH: REPLACE-WITH-YOUR-TOKEN // set this in atlantis.env
10-
NGROK_PROTOCOL: http
11-
NGROK_PORT: atlantis:4141
7+
command:
8+
- "http"
9+
- "atlantis:4141"
1210
env_file:
1311
- atlantis.env
1412
depends_on:

0 commit comments

Comments
 (0)