fix ngrok docker compose example (#3173)

This commit is contained in:
d3n1z6 2024-12-03 18:31:36 +01:00 committed by GitHub
parent f1d0736689
commit 86354f5ec2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,8 +13,11 @@ services:
- ./data:/data
ngrok:
image: shkoliar/ngrok:latest
ports:
- 4551:4551
image: ngrok/ngrok:latest
command:
- "tcp"
- "mc:25565"
environment:
- PARAMS=tcp -region=us -authtoken=YourAuthTokenHere mc:25565
NGROK_AUTHTOKEN: <YourAuthTokenHere>
ports:
- 4551:4551