Skip to content
Snippets Groups Projects
Verified Commit 06356be9 authored by Konstantin Tsabolov's avatar Konstantin Tsabolov
Browse files

chore(compose): fix local compose

parent 12e9eb25
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,6 @@ services: ...@@ -9,7 +9,6 @@ services:
init: true init: true
ports: ports:
- '3003:3003' - '3003:3003'
env_file: ./env/connection-manager.env
depends_on: depends_on:
- db - db
- nats - nats
...@@ -23,7 +22,6 @@ services: ...@@ -23,7 +22,6 @@ services:
init: true init: true
ports: ports:
- '3011:3011' - '3011:3011'
env_file: ./env/credential-manager.env
depends_on: depends_on:
- db - db
- nats - nats
...@@ -37,7 +35,6 @@ services: ...@@ -37,7 +35,6 @@ services:
init: true init: true
ports: ports:
- '3013:3013' - '3013:3013'
env_file: ./env/schema-manager.env
depends_on: depends_on:
- db - db
- nats - nats
...@@ -51,7 +48,6 @@ services: ...@@ -51,7 +48,6 @@ services:
init: true init: true
ports: ports:
- '3007:3007' - '3007:3007'
env_file: ./env/proof-manager.env
depends_on: depends_on:
- db - db
- nats - nats
...@@ -67,7 +63,17 @@ services: ...@@ -67,7 +63,17 @@ services:
- '3009:3009' - '3009:3009'
- '3010:3010' - '3010:3010'
- '4000:4000' - '4000:4000'
env_file: ./env/ssi-abstraction.env environment:
NATS_URL: nats://nats:4222
PORT: 3009
AGENT_NAME: ssi-abstraction-agent
AGENT_WALLET_ID: ssi-wallet-id
AGENT_WALLET_KEY: ssi-wallet-key
AGENT_HOST: http://localhost
AGENT_PUBLIC_DID_SEED: 6b8b882e2618fa5d45ee7229ca000000
AGENT_AUTO_ACCEPT_CONNECTION: true
AGENT_AUTO_ACCEPT_CREDENTIAL: contentApproved
AGENT_LEDGER_ID: BCOVRIN_TEST
depends_on: depends_on:
- db - db
- nats - nats
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment