-
Notifications
You must be signed in to change notification settings - Fork 4
/
compose.yaml
61 lines (55 loc) · 1.06 KB
/
compose.yaml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
services:
contracts:
build:
context: packages/contracts
container_name: contracts
ports:
- '8545:8545'
networks:
- local
env_file:
- .env
gateway-db:
build:
context: .
dockerfile: packages/gateway/docker/database/Dockerfile
ports:
- '3000:3000'
depends_on:
- db
metadata-api:
build:
context: .
dockerfile: packages/gateway/docker/database/Dockerfile
ports:
- '4000:3000'
depends_on:
- db
db:
image: postgres:16.2
container_name: gateway-postgres-db
ports:
- '5432:5432'
volumes:
- db_data:/data/db
restart: always
environment:
POSTGRES_USER: blockful
POSTGRES_PASSWORD: ensdomains
POSTGRES_DB: ensdomains
db-arb:
image: postgres:16.2
ports:
- '5433:5432'
volumes:
- arb_db_data:/data/db
restart: always
environment:
POSTGRES_USER: blockful
POSTGRES_PASSWORD: ensdomains
POSTGRES_DB: ensdomains
networks:
local:
volumes:
db_data:
arb_db_data: