Skip to content

Commit

Permalink
Merge pull request #494 from panoratech/ngrok-fix
Browse files Browse the repository at this point in the history
🐛 Added Ngrok Network access
  • Loading branch information
rflihxyz authored Jun 11, 2024
2 parents e9d6ea2 + 8ce0058 commit 4330a4d
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,18 +189,22 @@ services:
- .:/app

ngrok:
image: ngrok/ngrok:latest
restart: always
command:
- "start"
- "--all"
- "--config"
- "/etc/ngrok.yml"
volumes:
- ./ngrok.yml:/etc/ngrok.yml
ports:
- 4040:4040

image: ngrok/ngrok:latest
restart: always
command:
- "start"
- "--all"
- "--config"
- "/etc/ngrok.yml"
volumes:
- ./ngrok.yml:/etc/ngrok.yml
ports:
- 4040:4040
depends_on:
api:
condition: service_healthy
network_mode: "host"

docs:
build:
dockerfile: ./Dockerfile.dev
Expand Down

0 comments on commit 4330a4d

Please sign in to comment.