Compiled versions of hummingbot
are available on Docker Hub at theholiestroger/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 theholiestroger/hummingbot:$TAG -f Dockerfile .
# Push docker image to docker hub
$ docker push theholiestroger/hummingbot:$TAG
$ docker image rm theholiestroger/hummingbot:$TAG && \
docker build -t theholiestroger/hummingbot:$TAG -f Dockerfile . && \
docker push theholiestroger/hummingbot:$TAG