BeardedNoir Posted January 5, 2021 Share Posted January 5, 2021 (edited) Hello all, If like me you like to trade cryptocurrency and want to utilise your UNRAID server, whilst at the same time wanting to know what is inside the container due to the nature of crypto trading, then I hope this guide helps. I wanted to have Gunbot run in a Docker for ease and simplicity and so with the latest release, I have got it up and running via the following; Prerequisites *Download the latest build from; https://codeload.github.com/GuntharDeNiro/BTCT/https://github.com/GuntharDeNiro/BTCT/releases/download/2100/lin_v14.zip Build the Docker Image; 1) Create a Dockerfile containing the following; FROM ubuntu:latest RUN apt-get update RUN apt-get install -y curl unzip #RUN curl -o gunbot.zip https://codeload.github.com/GuntharDeNiro/BTCT/tar.gz/2100 ADD lin_v14.zip . RUN unzip lin_v14.zip WORKDIR lin_v14 RUN chmod +x gunthy-linux ENTRYPOINT ["./gunthy-linux"] 2) Place both the downloaded file (lin_v14.zip) and the Dockerfile into the same folder. 3) Via Terminal, navigate to the folder were the above two files are located and run the following command to build; docker build -t gunbot . 4) Lastly, run the following command to start the container; docker run -d -p 5000:5000 --name gunbot gunbot That's it! With a bit of luck you will now have your own Gunbot docker instance running. Hope this helps as much as it did for me learning how to run it. Any suggestions and/or recommendations, are gladly welcome, this is my first attempt at anything like this. Regards. Edited January 5, 2021 by LoneTraveler 1 Quote Link to comment
ozone31912 Posted January 6, 2021 Share Posted January 6, 2021 Hey LoneTraveler, I really appreciate you taking the time to post this, as it's exactly what I am looking for. Discouragingly, I'm stuck at the very first step and my hour of searching has proven fruitless. Are you able to elaborate on how you built the docker file? Did you use Unraid's docker GUI or simply create a text file, and if so, was that file a .txt file? Thanks for the help 1 Quote Link to comment
BeardedNoir Posted January 6, 2021 Author Share Posted January 6, 2021 (edited) Hi, I'm glad I could be of some assistance. I used DroidEdit on Android (but I'm sure any text editor will do) and created the aforementioned Dockerfile with no extension; I'll attach mine if it helps. Regards. Dockerfile Edited January 6, 2021 by LoneTraveler 1 Quote Link to comment
ozone31912 Posted January 6, 2021 Share Posted January 6, 2021 Thank you! That did the trick and I'm set now Cheers 1 Quote Link to comment
BeardedNoir Posted January 6, 2021 Author Share Posted January 6, 2021 3 minutes ago, ozone31912 said: Thank you! That did the trick and I'm set now Cheers Excellent. 👍 Quote Link to comment
Vitor Ventura Posted December 30, 2021 Share Posted December 30, 2021 Hello, Worked like a charm. Now, when a updated came out? How can be updated? Thanks Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.