Ability to run from within container? #1938
-
|
I have looked for this answer a few places, and maybe I am just missing it, but I'd like to be able to run this in docker-compose and kubernetes. The former would require a volume mount, and then I'm assuming it needs environment variables to point it to the directory with configs (or maybe the exact file(s) - I'm not sure). The latter would be environment variables and probably just copying the files into the image in the Dockerfile. Are there any examples or can someone please help me run both of these (or either)? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi,trimblemario There are no particular difficulties. for example: It is also possible to download the source code and BUILD it. You can also download the source code and BUILD it. If you want to run continuously, it is better to BUILD the source code and work with it. It is convenient to change the "ENTRYPOINT" in the Dockerfile and start the shell, in the container, so you can log in. |
Beta Was this translation helpful? Give feedback.
Hi,trimblemario
There are no particular difficulties.
A docker image is also available.
https://hub.docker.com/r/blazemeter/taurus/
for example:
It is also possible to download the source code and BUILD it.
It is a good idea to build and work on the source code if you want to run it continuously.
You ca…