aboutsummaryrefslogblamecommitdiffstats
path: root/docker-compose-test.yaml
blob: fa82a35299cf734162fe90416c5f6be156243127 (plain) (tree)
1
2
3
4
5
6
7
8
9




                
                      
            

                     
                    
             

               



                   





                                               
                                               








                        
                   
                                                 



                                   
                                               












                                    
                                               


                           
               






                                
          
                  
          
                  






                                

             
version: "3.4"
services:
  hived:
    image: hived
    build:
      context: ./hived
    secrets:
      - ch_api_key
      - ch_api_secret
      - tg_bot_token
    networks:
      - mainnet
      - telenet
    ports:
      - "8008:8008"
    depends_on:
      - redis
      - telebot
    entrypoint: ["/hived/docker-entrypoint.sh"]
    cap_drop:
      - ALL
    environment:
      - SERVER_DEPLOYMENT_TYPE=test
      - HTTPS_PROXY=socks5://192.168.1.214:9995
  telebot:
    image: telebot
    build:
      context: ./telebot
    secrets:
      - tg_bot_token
    networks:
      - telenet
    ports:
      - "9009:8000"
    entrypoint: ["/telebot/docker-entrypoint.sh"]
    cap_drop:
      - ALL
    environment:
      - SERVER_DEPLOYMENT_TYPE=test
      - HTTPS_PROXY=socks5://192.168.1.214:9995
  arbiter:
    image: arbiter
    build:
      context: ./arbiter
    networks:
      - mainnet
    ports:
      - "8009:8009"
    entrypoint: ["/arbiter/arbiter"]
    cap_drop:
      - ALL
    environment:
      - SERVER_DEPLOYMENT_TYPE=test
      - HTTPS_PROXY=socks5://192.168.1.214:9995
  redis:
    image: redis:6.2-alpine
    networks:
      - mainnet
    ports:
      - "6379:6379"
    environment:
      - ALLOW_EMPTY_PASSWORD=yes
    volumes:
      - redis-data:/data/
networks:
  mainnet:
    driver: bridge
  telenet:
    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: