Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/build/sdk/v2/environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,19 @@ services:

scan-crawler:
image: uniquenetwork/substrate-proxy-scan-crawler:master
restart: unless-stopped
depends_on:
- postgres
- chain
environment:
- DB_URL=postgres://db_user:db_password@postgres:5432/scan_db
- CHAIN=ws://chain:9833

scan-api:
image: uniquenetwork/substrate-proxy-scan-api:master
restart: unless-stopped
depends_on:
- postgres
ports:
- 3001:3001
environment:
Expand All @@ -53,6 +60,9 @@ services:

http-proxy:
image: uniquenetwork/substrate-proxy-http-proxy:master
restart: unless-stopped
depends_on:
- chain
ports:
- 3000:3000
environment:
Expand All @@ -66,6 +76,7 @@ services:

postgres:
image: postgres:17
restart: unless-stopped
environment:
POSTGRES_USER: db_user
POSTGRES_PASSWORD: db_password
Expand All @@ -77,6 +88,7 @@ services:

chain:
image: uniquenetwork/unique-node-public:latest
restart: unless-stopped
command: >
--dev
--idle-autoseal-interval 2000
Expand Down