File tree Expand file tree Collapse file tree 5 files changed +234
-168
lines changed Expand file tree Collapse file tree 5 files changed +234
-168
lines changed Original file line number Diff line number Diff line change 1+ If you would like to contribute to the development of AutoSploit please use the ` dev-beta ` branch from now on.
2+ Once we get a working version up in that branch i will update the ` master ` branch accordingly.
Original file line number Diff line number Diff line change @@ -2,6 +2,17 @@ Docker deployment instructions
22=====
33
44## tl;dr
5+
6+ Using [ docker-compose] ( https://docs.docker.com/compose/install/ ) :
7+
8+ ``` bash
9+ git clone https://github.com/NullArray/AutoSploit.git
10+ cd Autosploit/Docker
11+ docker-compose run --rm autosploit
12+ ```
13+
14+ Using just Docker:
15+
516``` bash
617git clone https://github.com/NullArray/AutoSploit.git
718cd Autosploit/Docker
Original file line number Diff line number Diff line change 1+ version : ' 3'
2+
3+ services :
4+ autosploit :
5+ build :
6+ context : .
7+ ports :
8+ - 80:80
9+ - 443:433
10+ - 4444:4444
11+ networks :
12+ - haknet
13+ depends_on :
14+ - postgres
15+ postgres :
16+ image : postgres
17+ environment :
18+ - POSTGRES_PASSWORD=s3cr3t
19+ networks :
20+ - haknet
21+ volumes :
22+ - db:/var/lib/postgresql/data
23+
24+ networks :
25+ haknet :
26+ driver : bridge
27+
28+ volumes :
29+ db :
30+
You can’t perform that action at this time.
0 commit comments