-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose-full-stack.yml
More file actions
40 lines (40 loc) · 999 Bytes
/
docker-compose-full-stack.yml
File metadata and controls
40 lines (40 loc) · 999 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
services:
app:
image: structs-webapp
environment:
DATABASE_URL: 'postgres://structs_webapp@structs-pg:5432/structs?serverVersion=14'
build: .
ports:
- 8080:80
volumes:
- type: bind
source: ./src
target: /src
structsd:
image: 'structs/structsd:latest'
hostname: 'structsd'
restart: on-failure
ports:
- 26656:26656
- 26657:26657
- 1317:1317
environment:
MONIKER: 'UnknownGuild'
NETWORK_VERSION: '74b'
NETWORK_TYPE: 'testnet'
NETWORK_CHAIN_ID: 'structstestnet-74'
NODE_TYPE: 'NONVALIDATING'
NODE_INDEXER: 'PSQL'
NODE_INDEXER_PG_CONNECTION: 'postgres://structs_indexer@structs-pg:5432/structs'
structs-pg:
image: 'structs/structs-pg:0.0.3'
hostname: 'structs-pg'
ports:
- 5432:5432
restart: on-failure
structs-proxy:
image: 'structs/structs-proxy:latest'
hostname: 'structs-proxy'
restart: on-failure
ports:
- 80:80