-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose-dev.yaml
69 lines (63 loc) · 1.39 KB
/
docker-compose-dev.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
62
63
64
65
66
67
68
69
version: '3'
services:
redis:
image: redis
restart: unless-stopped
ports:
- '127.0.0.1:6379:6379'
volumes:
- dev-redis-data:/data
db:
image: postgres:15-alpine
restart: unless-stopped
ports:
- '5432:5432'
volumes:
- dev-pg-data-main:/var/lib/postgresql/data
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: zero-protocol-labs
db-tokenization:
image: postgres:15-alpine
restart: unless-stopped
ports:
- '5433:5432'
volumes:
- dev-pg-data-tokenization:/var/lib/postgresql/data
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: tokenization
ganache-cli:
image: trufflesuite/ganache
entrypoint:
- node
- /app/dist/node/cli.js
- --db=/data
- --mnemonic
- 'chalk park staff buzz chair purchase wise oak receive avoid avoid home'
- -l
- '8000000'
- -e
- '1000000'
- -a
- '40'
- -h
- '0.0.0.0'
volumes:
- dev-ganache-data:/data
ports:
- '127.0.0.1:8545:8545'
mailhog:
platform: linux/amd64
image: mailhog/mailhog:latest
restart: unless-stopped
ports:
- '127.0.0.1:1025:1025'
- '127.0.0.1:8025:8025'
volumes:
dev-pg-data-main:
dev-pg-data-tokenization:
dev-ganache-data:
dev-redis-data: