Dockerized version of MISP (Malware Information Sharing Platform)
5.3K
This image contains the latest version of MISP (2.4.110). It requires a MySQL container to store the database. See http://www.misp-project.org/ for more details. The Docker repository is: https://github.com/MISP/misp-docker
The container needs the following environment variables:
The web interface is available via HTTP (TCP/80). I recommend to use a NGinx container as a reverse-proxy to provide SSL support.
The container is stand alone and can be started using the 'run' command or, better, a docker compose file:
version: '2'
networks:
misp-network:
driver: bridge
services:
misp-web:
build: misp-web
depends_on:
- misp-db
container_name: misp-web
hostname: misp-web
image: misp-web:latest
restart: always
networks:
- misp-network
links:
- misp-db
ports:
- "80:80"
volumes:
- /dev/urandom:/dev/random
- /data/misp:/var/www/MISP
environment:
- MYSQL_ROOT_PASSWORD=xxxxxxxx
- MYSQL_MISP_PASSWORD=xxxxxxxx
- MYSQL_HOST=misp-db
- [email protected]
- MISP_ADMIN_PASSPHRASE=xxxxxxxxx
- MISP_BASEURL=http:\/\/misp\.test
- POSTFIX_RELAY_HOST=relay.fqdn
- TIMEZONE=Europe/Brussels
misp-db:
build:
context: misp-db
args:
MYSQL_MISP_PASSWORD: xxxxxxxx
container_name: misp-db
hostname: misp-db
image: misp-db:latest
restart: always
networks:
- misp-network
volumes:
- /data/mysql:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=xxxxxxxx
The container will configure itself and MISP will be ready to use. However for a production environment, it is highly recommanded to review all the settings and adapt them to match your requirements.
Content type
Image
Digest
Size
1.2 GB
Last updated
about 8 years ago
docker pull rootshell/misp