Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 860 Bytes

DOCKER.md

File metadata and controls

32 lines (21 loc) · 860 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

# 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

Build and Push

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