-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (33 loc) · 806 Bytes
/
docker-compose.yml
File metadata and controls
33 lines (33 loc) · 806 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
version: '3.4'
services:
dshackle:
container_name: dshackle
image: emeraldpay/dshackle:0.13.1
restart: unless-stopped
volumes:
- /etc/dshackle:/etc/dshackle # This should hold all your yaml files
ports:
- "8080:8080"
- "8081:8081"
- "8082:8082"
environment:
- ALCHEMY_KEY=
- ANYBLOCK_KEY=
- CHAINSTACK_NODE=
- CHAINSTACK_USERNAME=
- CHAINSTACK_PASSWORD=
- COINBASE_USERNAME=
- COINBASE_PASSWORD=
- INFURA_KEY=
- RIVET_KEY=
- QUICKNODE_HTTP=
- QUICKNODE_WSS=
redis:
container_name: redis
image: healthcheck/redis:alpine
restart: unless-stopped
command:
- "redis-server"
- "--maxmemory ${REDIS_RAM}"
- "--maxmemory-policy allkeys-lru"
- '--save ""'