forked from openwallet-foundation/acapy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request openwallet-foundation#22 from baens/multiple-agents
Add better ngrok waiting and multiple agents
- Loading branch information
Showing
3 changed files
with
38 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,7 @@ | ||
version: '3' | ||
version: "3" | ||
services: | ||
ngrok: | ||
container_name: ngrok | ||
image: wernight/ngrok | ||
command: ngrok http agent:3000 | ||
|
||
command: ngrok http agent:3000 --log stdout | ||
agent: | ||
build: . | ||
depends_on: | ||
- ngrok |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
version: "3" | ||
services: | ||
ngrok-1: | ||
image: wernight/ngrok | ||
command: ngrok http agent-1:3000 --log stdout | ||
agent-1: | ||
build: . | ||
environment: | ||
NGROK_NAME: ngrok-1 | ||
ngrok-2: | ||
image: wernight/ngrok | ||
command: ngrok http agent-2:3000 --log stdout | ||
agent-2: | ||
build: . | ||
environment: | ||
NGROK_NAME: ngrok-2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters