Running Velociraptor on docker via AWS ECS #2805
-
Hello, Has anyone ran Velociraptor on docker container via this link velociraptor-docker? And if so, is it ok to run Velociraptor as a container being managed by AWS ECS ? If not, could you speak on why Velociraptor should not be a container managed by AWS ECS and if we should just deploy Velociraptor on a EC2 instance? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Docker is really good for staging software that has a lot of dependencies as it can separate the different modules like database, web server etc, or it can be useful to install libraries and other dependencies. I personally never use it for velociraptor because there is no point. Velociraptor does not really have any dependencies so there is no real benefit in isolation from the pod OS. It's a single binary anyway and you don't need to install libraries etc. I think you can certainly use Docker but it's kind of pointless in my opinion so I never bother. |
Beta Was this translation helpful? Give feedback.
Docker is really good for staging software that has a lot of dependencies as it can separate the different modules like database, web server etc, or it can be useful to install libraries and other dependencies.
I personally never use it for velociraptor because there is no point. Velociraptor does not really have any dependencies so there is no real benefit in isolation from the pod OS. It's a single binary anyway and you don't need to install libraries etc.
I think you can certainly use Docker but it's kind of pointless in my opinion so I never bother.