Skip to content

Latest commit

 

History

History
63 lines (42 loc) · 1.53 KB

README.md

File metadata and controls

63 lines (42 loc) · 1.53 KB

MISP Docker

Build status

A Docker Compose project for MISP ("Malware Information Sharing Platform").

This is a work in progress rewrite of the MISP Docker (XME edition) to resolve longstanding bugs and add new features.

Warning: Please see the Issues tab for known issues.

Features

  • Creates separate Docker containers for the database, web server, and reverse proxy
  • Reconfiguration of the base URL in config.php
  • Generation of a new salt in config.php
  • Generation of a self-signed certificate
  • Optimization of php.ini to match the MISP recommended values
  • Creation of the MySQL database
  • Generation of the MSIP PGP key

Setup

Install Docker

sudo apt-get install -y docker.io git curl

Install Docker Compose

sudo curl -L "https://github.com/docker/compose/releases/download/1.25.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

Fetch files

git clone https://github.com/seanthegeek/misp-docker
cd misp-docker

Prep for building

Add your misp.crt and misp.key files to the ./proxy/ssl folder

Create a .env file to store your custom settings

cp template.env .env
nano .env

Build the containers

docker-compose build

Run the containers

docker-compose up -d