blob: 5040b2dd9a90a3d2b92d5171a10ccaaa692414a3 (
plain) (
blame)
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
|
version: "3.4"
services:
hived:
image: hived
build:
context: ./
secrets:
- tg_bot_token
- ch_api_key
- ch_api_secret
networks:
- hivednet
restart: unless-stopped
ports:
- "8008:8008"
depends_on:
- redis
entrypoint: /hived/docker-entrypoint.sh
cap_drop:
- ALL
environment:
- SERVER_DEPLOYMENT_TYPE=test
redis:
image: redis:6.2-alpine
networks:
- hivednet
restart: unless-stopped
ports:
- "6379:6379"
environment:
- ALLOW_EMPTY_PASSWORD=yes
volumes:
- redis-data:/data/
networks:
hivednet:
driver: bridge
secrets:
tg_bot_token:
file: ./tgtoken
ch_api_key:
file: ./changelly_api_key
ch_api_secret:
file: ./changelly_api_secret
volumes:
redis-data:
|