Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wisehackermonkey/d8e2ea665a139d1bf57c1c28c95b5c2c to your computer and use it in GitHub Desktop.
Save wisehackermonkey/d8e2ea665a139d1bf57c1c28c95b5c2c to your computer and use it in GitHub Desktop.
install_directions_eagle_eye.md

how to install agleEye by ThoughtfulDev on digital ocean

/: Stalk your Friends. Find their Instagram, FB and Twitter Profiles using Image Recognition and Reverse Image Search.
https://github.com/ThoughtfulDev/EagleEye
20200621

Install

git clone https://github.com/ThoughtfulDev/EagleEye
cd EagleEye

# depending on if docker user is setup use "sudo"
docker build -t eagle-eye - < dockerfile

# publish the docker image to hub.docker.com
docker login
docker tag eagle-eye <docker hub username>/eagle-eye
docker push <docker hub username>/eagle-eye
EX: 
docker push wisehackermonkey/eagle-eye


mkdir ./known 
mkdir ./result
copy results of these commands
echo "$(pwd)/known" 

echo "$(pwd)/result"

add images of person being searched for in folder './known

Edit the entry.sh within EagleEye folder to reflect persons name to be tracked

docker run -it --rm --net=host --env="DISPLAY" \
                           --volume="$HOME/.Xauthority:/root/.Xauthority:rw"  \
                           -v  $(pwd)/known:/known \
                           -v  $(pwd)/result:/result \
                           -v $(pwd)/entry.sh:/entry.sh \
                           wisehackermonkey/eagle-eye
Windows version
docker run -ti --rm --net=host --env="DISPLAY"  --volume="${PWD}/.Xauthority:/root/.Xauthority:rw"  -v  ${PWD}/known:/EagleEye/known -v  ${PWD}/result:/result -v ${PWD}/entry.sh:/entry.sh eagle-eye

publish docker image

docker login
docker tag eagle-eye wisehackermonkey/eagle-eye
docker push  wisehackermonkey/eagle-eye

fix gecodriver issues

wget https://github.com/mozilla/geckodriver/releases/download/v0.26.0/geckodriver-v0.26.0-linux64.tar.gz
sudo sh -c 'tar -x geckodriver -zf geckodriver-v0.26.0-linux64.tar.gz -O > /usr/bin/geckodriver'
sudo chmod +x /usr/bin/geckodriver
rm geckodriver-v0.26.0-linux64.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment