Skip to content

Commit c467672

Browse files
authored
Merge pull request #34 from Ekultek/dev-updates
Updates to prepare for development
2 parents 0458fc7 + dcad3fd commit c467672

File tree

5 files changed

+233
-166
lines changed

5 files changed

+233
-166
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
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.

Docker/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff 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
617
git clone https://github.com/NullArray/AutoSploit.git
718
cd Autosploit/Docker

Docker/docker-compose.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+

0 commit comments

Comments
 (0)