Skip to content

Commit

Permalink
Exposing cloudagent port for development
Browse files Browse the repository at this point in the history
  • Loading branch information
georgepadayatti committed Aug 26, 2020
1 parent 0686a3b commit 087d637
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
12 changes: 12 additions & 0 deletions cloud-agent/startup_temp.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
aca-py start \
-it http 0.0.0.0 80 \
-ot http \
-e $ACAPY_ENDPOINT \
--label $AGENT_NAME \
--admin 0.0.0.0 8001 \
--admin-insecure-mode \
--auto-accept-requests --auto-ping-connection \
--genesis-url $GENESIS_URL \
--wallet-type indy \
--wallet-name $AGENT_NAME \
--webhook-url $WEBHOOK_URL
8 changes: 7 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ services:
image: georgejpadayatti/aries-cloudagent:0.5.3
command: /bin/bash -c "./startup.sh"
container_name: agent1.localhost
ports:
- 8051:8001
environment:
AGENT_NAME: Test-Center
ACAPY_ENDPOINT: http://agent1.localhost
Expand All @@ -36,6 +38,8 @@ services:
image: georgejpadayatti/aries-cloudagent:0.5.3
command: /bin/bash -c "./startup.sh"
container_name: agent2.localhost
ports:
- 8052:8001
environment:
AGENT_NAME: Data4Life-User
ACAPY_ENDPOINT: http://agent2.localhost
Expand All @@ -58,6 +62,8 @@ services:
image: georgejpadayatti/aries-cloudagent:0.5.3
command: /bin/bash -c "./startup.sh"
container_name: agent3.localhost
ports:
- 8053:8001
environment:
AGENT_NAME: Travel-Company
ACAPY_ENDPOINT: http://agent3.localhost
Expand All @@ -67,7 +73,7 @@ services:
- ./cloud-agent/startup.sh:/home/indy/startup.sh
networks:
- von_von

agent3.webhook:
image: georgejpadayatti/aries-webhook-interceptor:0.1
container_name: agent3.webhook
Expand Down

0 comments on commit 087d637

Please sign in to comment.