mirror of
https://github.com/valitydev/docker-misp.git
synced 2024-11-06 08:45:18 +00:00
45 lines
984 B
YAML
45 lines
984 B
YAML
version: '3'
|
|
services:
|
|
redis:
|
|
image: redis:5.0.6
|
|
|
|
db:
|
|
image: mysql
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
restart: always
|
|
environment:
|
|
- "MYSQL_USER=misp"
|
|
- "MYSQL_PASSWORD=example"
|
|
- "MYSQL_ROOT_PASSWORD=password"
|
|
- "MYSQL_DATABASE=misp"
|
|
|
|
misp:
|
|
image: misp
|
|
build: server/.
|
|
depends_on:
|
|
- redis
|
|
- db
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- "./server-configs/:/var/www/MISP/app/Config/"
|
|
- "./logs/:/var/www/MISP/app/tmp/logs/"
|
|
- "./files/:/var/www/MISP/app/files"
|
|
- "./ssl/:/etc/apache2/ssl/"
|
|
environment:
|
|
- "CRON_USER_ID=1"
|
|
- "REDIS_FQDN=redis"
|
|
- "MYSQL_PASSWORD=example"
|
|
- "INIT=true" # Initialze MISP, things includes, attempting to import SQL and the Files DIR
|
|
|
|
misp-modules:
|
|
image: misp-modules
|
|
build: modules/.
|
|
environment:
|
|
- "REDIS_BACKEND=redis"
|
|
depends_on:
|
|
- redis
|
|
- db
|
|
|