forked from UniqueNetwork/unique-react-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
25 lines (23 loc) · 730 Bytes
/
docker-compose.yaml
File metadata and controls
25 lines (23 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
version: '3.8'
services:
substrate-proxy:
image: uniquenetwork/substrate-proxy-http-proxy:master
ports:
- "3000:3000"
environment:
- PORT=3000
- CHAIN=wss://ws.unq.uniq.su
- MIN_LOG_LEVEL=info
- EXTRINSIC_MORTAL_BLOCK_LENGTH=32
- OPENAPI_SERVER_URL=http://localhost:3000
- OPENAPI_SERVER_DESCRIPTION="Local development server"
- EXTRINSICS_STORAGE_MAX_BLOCKS_COUNT=100
- CORS_ALLOWED_ORIGINS=http://localhost:3001
- CORS_ALLOWED_HEADERS=Origin, X-Requested-With, Content-Type, Accept, Authorization
- CORS_ALLOWED_METHODS=GET, POST, PUT, DELETE, OPTIONS
ui:
build:
context: .
dockerfile: Dockerfile
ports:
- "3001:80"