-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (37 loc) · 1.06 KB
/
docker-compose.yml
File metadata and controls
41 lines (37 loc) · 1.06 KB
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
services:
node:
image: ghcr.io/xmtp/node-go:main
platform: linux/amd64
environment:
- GOWAKU-NODEKEY=8a30dcb604b0b53627a5adc054dbf434b446628d4bd1eccc681d223f0550ce67
command:
- --store.enable
- --store.db-connection-string=postgres://postgres:xmtp@db:5432/postgres?sslmode=disable
- --store.reader-db-connection-string=postgres://postgres:xmtp@db:5432/postgres?sslmode=disable
- --mls-store.db-connection-string=postgres://postgres:xmtp@mlsdb:5432/postgres?sslmode=disable
- --mls-validation.grpc-address=validation:50051
- --api.enable-mls
- --wait-for-db=30s
- --api.authn.enable
ports:
- 5555:5555
- 5556:5556
depends_on:
- db
- mlsdb
- validation
validation:
image: ghcr.io/xmtp/mls-validation-service:main
platform: linux/amd64
db:
image: postgres:13
environment:
POSTGRES_PASSWORD: xmtp
mlsdb:
image: postgres:13
environment:
POSTGRES_PASSWORD: xmtp
upload-service:
build: ./uploadService
ports:
- 3000:3000