Compiled versions of hummingbot
are available on Docker Hub at coinalpha/hummingbot
.
For instructions on operating hummingbot
with Docker, navigate to hummingbot
documentation: Install with Docker.
# Create a label for image
export TAG=my-label
# Build docker image
$ docker build -t coinalpha/hummingbot:$TAG -f Dockerfile .
# Push docker image to docker hub
$ docker push coinalpha/hummingbot:$TAG
$ docker image rm coinalpha/hummingbot:$TAG && \
docker build -t coinalpha/hummingbot:$TAG -f Dockerfile . && \
docker push coinalpha/hummingbot:$TAG