Commit 108bf232 authored by Víctor García's avatar Víctor García
Browse files

Add Docker

parent 6bc9d34b
Loading
Loading
Loading
Loading

Dockerfile

0 → 100644
+24 −0
Original line number Diff line number Diff line
FROM kalilinux/kali-rolling

RUN apt-get update && \
apt-get install -y git python3-pip figlet sudo;

#Install packages dependencies
RUN true && \
apt-get install -y boxes php curl xdotool wget;

WORKDIR /root/hackingtool
COPY . .

RUN true && \
pip3 install -r requirement.txt;

RUN true && \
pip3 install lolcat boxes flask requests;

RUN true && \
 echo "/root/hackingtool/" > /home/hackingtoolpath.txt;

EXPOSE 1-65535

ENTRYPOINT ["python3", "/root/hackingtool/hackingtool.py"]
 No newline at end of file
+15 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
[![HitCount](http://hits.dwyl.com/Z4nzu/hackingtool.svg)](http://hits.dwyl.com/Z4nzu/hackingtool)
![](https://img.shields.io/badge/platform-Linux%20%7C%20KaliLinux%20%7C%20ParrotOs-blue)

#### Install Kali Linux in WIndows10 Without VirtualBox [YOUTUBE](https://youtu.be/BsFhpIDcd9I)
#### Install Kali Linux in WIndows10 Without VirtualBox [YOUTUBE](https://youtu.be/BsFhpIDcd9I) or use Docker

## Update Available V1.1.0 🚀 
- [x] Added New Tools 
@@ -224,6 +224,20 @@

 After Following All Steps Just Type In Terminal **root@kaliLinux:~** **hackingtool**

## Use image with Docker

### Run in one click
`docker run -it vgpastor/hackingtool`

### Build locally
`docker-compose build`

`docker-compose run hackingtool`

- If need open other ports you can edit the docker-compose.yml file
- Volumes are mounted in the container to persist data and can share files between the host and the container


#### Thanks to original Author of the tools used in hackingtool

<img src ="https://img.shields.io/badge/Important-notice-red" />

docker-compose.yml

0 → 100644
+10 −0
Original line number Diff line number Diff line
version: "3.9"
services:
  hackingtool:
    build: .
    stdin_open: true # docker run -i
    tty: true        # docker run -t
    volumes:
      - .:/root/hackingtool
    ports:
      - 22:22
 No newline at end of file