-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
docker-compose.yml
61 lines (57 loc) · 1.46 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
version: '3.4'
services:
db:
image: postgres:15-alpine
volumes:
- ./pg_dump.sql:/docker-entrypoint-initdb.d/init.sql
- postgres_data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
restart: unless-stopped
redis:
image: redis:7.2-alpine
restart: unless-stopped
command: ["redis-server", "/usr/local/etc/redis/redis.conf","--daemonize","no"]
volumes:
- ./redis.conf.example:/usr/local/etc/redis/redis.conf
- redis_data:/data
harukamaaleoexplorer:
image: harukamaaleoexplorer
build:
context: .
dockerfile: ./alpine.Dockerfile
#dockerfile: ./slim.Dockerfile
environment:
- DB_HOST=db
- DB_USER=postgres
- DB_PASS=postgres
- DB_DATABASE=postgres
- DB_SCHEMA=explorer
- REDIS_HOST=redis
- REDIS_PORT=6379
- REDIS_DB=0
- HOST=0.0.0.0
- PORT=8800
- API_PORT=8801
- API_HOST=0.0.0.0
- P2P_NODE_HOST=host.docker.internal
- P2P_NODE_PORT=4133
- P2P_BLOCK_BATCH_SIZE=1
- RPC_URL_ROOT=http://host.docker.internal:3033
- DEBUG=1
- DEV_MODE=1
- TURNSTILE_SITE_KEY=0x0
- TURNSTILE_SECRET_KEY=0x0
- NETWORK=testnet
restart: unless-stopped
depends_on:
- db
- redis
ports:
- 8800:8800
- 8801:8801
volumes:
postgres_data:
driver: local
redis_data:
driver: local