-
Notifications
You must be signed in to change notification settings - Fork 810
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dockerize #287
Comments
How can I help? |
@FernandoMiguel One question I have is whether it makes sense to try to pass commands and parameters to the docker container somehow for running each different command, or if I should just assume people will ssh into the docker container and have an easy way for them to get data in and out of the docker environment. I'm leaning toward the "just ssh in" model, as I don't even know if there is another way of doing things. Another concern I have is around the data collection and can Docker containers expand as the data within it grows? For example, a recent engagement had 8GB of metadata collected from their accounts. |
There's no ssh, just exec. |
Docker storage is limited by how much you set up on the agent. Also, you can just mount the storage output to the host disk, and that removes that concern |
Looks like somehow
So looks like I need to focus more on ensuring exactly what I've requested is installed, probably using sha hashes. I was not expecting dependencies to be this much of a problem for this project. |
Hi. Just saw this issue after trying to run the demo from a Docker container. Currently I am able to get "CloudMapper serving on 127.0.0.1:8000" but when I access it from the browser I get a "localhost didn't send any data". Any advice? Thanks Here is a link to my GitHub gist: https://gist.github.com/Salihan04/b500ba06627f36d1fa0993c87bcb047a |
In a quick skim, this looks incorrect @Salihan04 https://gist.github.com/Salihan04/b500ba06627f36d1fa0993c87bcb047a#file-docker-compose-yml-L9 Until there is an official docker image for this though, docker related issues are going to be out of scope for what I'm willing to support questions on as too many things can go wrong with people's own docker configs. |
@Salihan04 Are you attempting to access it on port 9000 in your browser? |
@Salihan04 Are you accessing it via port 9000 in your browser? |
yes |
yes |
Enough people run into issues getting it up and running I need to look into running it via Docker in a smart way that lets you take advantage of all the commands, not just drawing a network diagram like the previous PR's have focused on.
The text was updated successfully, but these errors were encountered: