You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I was interested in what that software can do with docker.
I could not find away to first use it, can I ask for a tip ?
If helpful , I here give a recipe to build your software, without the user being required to install go on his machine :
# In an empty dir, on a machine with docker installed
git clone https://github.com/hhdug/hdtop .
docker run --rm -v $(pwd)/src/hdtop:/usr/src/hdtop -w /usr/src/hdtop golang:1.10 bash -c 'go get github.com/fsouza/go-dockerclient/... && go get github.com/constabulary/gb/... && go build -v && pwd && ls -allh hdtop'
ls -allh src/hdtop/hdtop
echo"The built exacutable [hdtop] is at [$(pwd)/src/hdtop/hdtop] "echo""
I tried src/hdtop/hdtop --help out of docker container, gave me a error panic message, running on debian stretch,execution stops immediately.
worth mentioning, due to dependency math/Something, golang >= 1.9 is required, I did successfully build using golang 10
The text was updated successfully, but these errors were encountered:
Hi, I was interested in what that software can do with docker.
I could not find away to first use it, can I ask for a tip ?
If helpful , I here give a recipe to build your software, without the user being required to install go on his machine :
I tried
src/hdtop/hdtop --help
out of docker container, gave me a error panic message, running on debian stretch,execution stops immediately.worth mentioning, due to dependency
math/Something
,golang >= 1.9
is required, I did successfully build usinggolang 10
The text was updated successfully, but these errors were encountered: