aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose-test.yaml
blob: 8d8481fd9e72d52f053955008dcda699a5195635 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
services:
  hived:
    image: hived
    build:
      context: ./hived
    secrets:
      - tg_bot_token
    networks:
      - mainnet
      - telenet
    ports:
      - "10008:8008"
    depends_on:
      - keydb
      - telebot
    entrypoint: ["/hived/docker-entrypoint.sh"]
    cap_drop:
      - ALL
    environment:
      - SERVER_DEPLOYMENT_TYPE=test
      - POLYGON_API_KEY=
      - HIVED_PRICE_SOURCE=cmc
      - CMC_API_KEY=d941be62-d4da-426c-8dc3-7311b04dfa5f
  telebot:
    image: telebot
    build:
      context: ./telebot
    secrets:
      - tg_bot_token
    networks:
      - telenet
    ports:
      - "10009:8000"
    entrypoint: ["/telebot/docker-entrypoint.sh"]
    cap_drop:
      - ALL
    environment:
      - SERVER_DEPLOYMENT_TYPE=test
  arbiter:
    image: arbiter
    build:
      context: ./arbiter
    networks:
      - mainnet
    ports:
      - "8009:8009"
    entrypoint: ["/arbiter/arbiter"]
    cap_drop:
      - ALL
    environment:
      - SERVER_DEPLOYMENT_TYPE=test
  keydb:
    image: eqalpha/keydb:alpine_x86_64_v6.3.4
    networks:
      - mainnet
    ports:
      - "6380:6379"
    environment:
      - ALLOW_EMPTY_PASSWORD=yes
    # volumes:
    #   - keydb-data:/data/
networks:
  mainnet:
    driver: bridge
  telenet:
    driver: bridge
secrets:
  tg_bot_token:
    file: ./tgtoken
volumes:
  keydb-data: