forked from matter-labs/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (37 loc) · 831 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (37 loc) · 831 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
version: '3.2'
services:
postgres:
image: "postgres:12"
ports:
- "5432:5432"
volumes:
- type: bind
source: ./volumes/postgres
target: /var/lib/postgresql/data
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
geth:
image: "matterlabs/geth:latest"
ports:
- "8545:8545"
- "8546:8546"
volumes:
- type: bind
source: ./volumes/geth
target: /var/lib/geth/data
environment:
- PLUGIN_CONFIG=fast
dev-liquidity-token-watcher:
image: "matterlabs/dev-liquidity-token-watcher:latest"
env_file:
- ./etc/env/docker.env
ports:
- "9975:9975"
volumes:
- ./etc/tokens/:/etc/tokens
dev-ticker:
image: "matterlabs/dev-ticker:latest"
ports:
- "9876:9876"
volumes:
- ./etc/tokens/:/etc/tokens