Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 795 Bytes

DOCKER.md

File metadata and controls

29 lines (19 loc) · 795 Bytes

Docker Instructions

Compiled versions of hummingbot are available on Docker Hub at coinalpha/hummingbot.

Running hummingbot with Docker

For instructions on operating hummingbot with Docker, navigate to hummingbot documentation: Install with Docker.


Development commands: deploying to Docker Hub

Create docker image

# Build docker image
$ docker build -t coinalpha/hummingbot:$TAG -f Dockerfile .

# Push docker image to docker hub
$ docker push coinalpha/hummingbot:$TAG

Build and Push

$ docker image rm coinalpha/hummingbot:$TAG && \
  docker build -t coinalpha/hummingbot:$TAG -f Dockerfile \
  docker push coinalpha/hummingbot:$TAG