-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
69 lines (65 loc) · 1.59 KB
/
docker-compose.yml
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
services:
indexer:
build: .
ports:
- "${INDEXER_PORT:-8080}:8080"
environment:
- DATABASE__USERNAME=${DB_USERNAME:-postgres}
- DATABASE__PASSWORD=${DB_PASSWORD}
- DATABASE__HOST=db
- DATABASE__PORT=${DB_PORT:-5432}
- DATABASE__DATABASE_NAME=${DB_NAME:-archindexer}
- DATABASE__MAX_CONNECTIONS=${DB_MAX_CONNECTIONS:-20}
- DATABASE__MIN_CONNECTIONS=${DB_MIN_CONNECTIONS:-5}
- APPLICATION__PORT=8080
- APPLICATION__HOST=0.0.0.0
- ARCH_NODE__URL=${ARCH_NODE_URL:-http://leader:9002}
- REDIS__URL=redis://redis:6379
- INDEXER__BATCH_SIZE=100
- INDEXER__CONCURRENT_BATCHES=5
- RUST_LOG=info
depends_on:
- db
- redis
networks:
- arch-network
- internal
db:
image: postgres:13
environment:
- POSTGRES_USER=${DB_USERNAME:-postgres}
- POSTGRES_PASSWORD=${DB_PASSWORD}
- POSTGRES_DB=${DB_NAME:-archindexer}
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
- ./init.sql:/docker-entrypoint-initdb.d/init.sql
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
networks:
- internal
redis:
image: redis:7-alpine
ports:
- "6379:6379"
volumes:
- redis_data:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 3s
retries: 5
networks:
- internal
volumes:
pgdata:
redis_data:
networks:
arch-network:
external: true
name: arch-cli_arch-network
internal: