Skip to content

Commit

Permalink
Merge branch 'master' of github.com:raesene/dockerized-security-tools
Browse files Browse the repository at this point in the history
  • Loading branch information
raesene committed Jan 13, 2019
2 parents 7ae8698 + 61b2bfb commit 97aa9d1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@ Using a common base image will help reduce disk space needed, Ubuntu:18.04 is us
The Dockerfiles are then made available on [Docker Hub](https://hub.docker.com/r/raesene/) under my account.

Periodic rebuilds are triggered for each build using [Microsoft Flow](https://flow.microsoft.com/en-us/) so that the images stay fresh.

## Play with Docker

For some of the images you can try things out in Play with Docker using the buttons below (you'll need a docker hub account to make this work). Once you click the button and the stack has launched on Play with Docker just look for the link with the port number in it (e.g. 3000) on the page and click that for access.

- Dradis - [![Try in PWD](https://raw.githubusercontent.com/play-with-docker/stacks/master/assets/images/button.png)](https://labs.play-with-docker.com/?stack=https://raw.githubusercontent.com/raesene/dockerized-security-tools/master/dradis/docker-compose.yml)
5 changes: 4 additions & 1 deletion dradis/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@ RUN apt update -qq && \
rm -rf /var/lib/apt/lists/* && rm -rf /var/cache/apt/*

#Clone the repo
RUN git clone --depth=1 https://github.com/dradis/dradis-ce.git && rm -rf /dradis-ce/.git/*
RUN git clone --depth=1 https://github.com/dradis/dradis-ce.git

WORKDIR /dradis-ce

#Can't set production without SSL
#ENV RAILS_ENV=production

#Complains without the rake gem setup
RUN gem install rake
RUN gem install bundler -v '1.17.3'
Expand Down
5 changes: 4 additions & 1 deletion dradis/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
version: '3'

services:

dradis:
image: raesene/dradis
ports:
- "3000:3000"
- "3000:3000"
2 changes: 1 addition & 1 deletion nikto/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:18.04

LABEL maintainer="[email protected]"
LABEL maintainer "Rory Mccune <[email protected]>"

RUN apt update && apt install -y git && rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 97aa9d1

Please sign in to comment.