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






                    
                  




                           












                                




                        

                                  

             
version: "3.4"
services:
  hived:
    image: hived
    build:
      context: ./
    secrets:
      - tg_bot_token
      - ch_api_key
    networks:
      - hivednet
    restart: unless-stopped
    ports:
      - "8008:8008"
    depends_on:
      - redis
  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:
secrets:
  tg_bot_token:
    file: ./tgtoken.json
  ch_api_key:
    file: ./changelly_api_key.json
volumes:
  redis-data: