using digital ocean to host the node js backend now i want to deploy to that droplet i have crated a docker conatiner and now want that to move to my droplet then in second last step getting erorr as follows bash: docker-machine: command not found
script:
- base=https://github.com/docker/machine/releases/download/v0.16.0 && curl -L $base/docker-machine-$(uname -s)-$(uname -m) >/tmp/docker-machine && sudo mv /tmp/docker-machine /usr/local/bin/docker-machine && chmod +x /usr/local/bin/docker-machine
- docker login -u user -p password
- docker pull buildname
- docker-machine env env-File-Name
- eval $(docker-machine env DropletName)
- docker run -d --env-file .env-file -p 80:8200 docker-image
any help would be much appriciated