HiddenEye-Legacy/Docker
MoisesTapia a90a92fed4
New Changes about folders and volumens in docker-compose
2020-07-27 10:54:00 -05:00
..
images add files 2020-07-26 10:14:06 -05:00
.redstyled.yaml add new features in README.md 2020-07-26 13:54:22 -05:00
README.md Fix sintax and more features 2020-07-26 14:07:04 -05:00

README.md

Run HiddenEye in Docker Compose

docker dockercompose Maintainer

Runnin within container

running link

Requeriments

  • Docker
  • docker-compose

Usage Mode

Clone the repo from Github

git clone https://github.com/DarkSecDevelopers/HiddenEye
cd HiddenEye/Docker

Run docker-compose

docker-compose up --build -d

'Don not need redirection of ports 'cause the container is exposed to internet'
Verify of the container is running with:

docker-compose ps

ps

Executing HiddenEye inside of container

docker-compose exec hidden python3 HiddenEye.py

exec

Persist Data

When we make or buils the service with docker-compose up --build -d this persist the data templates in the same folder WebTemplate. If you add the new Template in WbeTemplate this will be reflected in the container and you can use it.

To add WebTemplate you juste need add them in this folder and done

  • equinockx~/Webtemplate$ cp * Docker/Webtemplate
  • WebTemplate

First Start the services

docker-compose up --build -d

Down the container

docker-compose down

Stop the services

docker-compose stop

Start the services

With this command docker-compose will initialize the service stopped

docker-compose start