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

chore: add auth to local nats server

parent 6cd5e59e
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,13 @@ services: ...@@ -6,6 +6,13 @@ services:
ports: ports:
- '4222:4222' #Nats server port - '4222:4222' #Nats server port
- '8222:8222' #Nats server Monitoring port - '8222:8222' #Nats server Monitoring port
command: [
"--config", "nats-server.conf",
"--debug",
"--trace",
"--user", "nats_user",
"--pass", "Rw+dYIymAQm9H6ELLNwSuGo1812jqQ=="
]
ssi: ssi:
build: build:
...@@ -38,6 +45,8 @@ services: ...@@ -38,6 +45,8 @@ services:
environment: environment:
- HTTP_PORT=3000 - HTTP_PORT=3000
- NATS_URL=nats://nats:4222 - NATS_URL=nats://nats:4222
- NATS_USER=nats_user
- NATS_PASSWORD=Rw+dYIymAQm9H6ELLNwSuGo1812jqQ==
- NATS_MONITORING_URL=http://nats:8222 - NATS_MONITORING_URL=http://nats:8222
- SSI_AGENT_URL=http://ssi:3009 - SSI_AGENT_URL=http://ssi:3009
ports: ports:
......
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