2019-11-25 21:58:18 +00:00
|
|
|
version: '3'
|
|
|
|
services:
|
2020-02-12 16:01:14 +00:00
|
|
|
# This is capible to relay via gmail, Amazon SES, or generic relays
|
|
|
|
# See: https://hub.docker.com/r/namshi/smtp
|
|
|
|
mail:
|
|
|
|
image: namshi/smtp
|
|
|
|
|
2019-11-25 21:58:18 +00:00
|
|
|
redis:
|
|
|
|
image: redis:5.0.6
|
|
|
|
|
|
|
|
db:
|
2020-01-28 21:04:09 +00:00
|
|
|
image: mysql:8.0.19
|
2019-11-25 21:58:18 +00:00
|
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
|
|
restart: always
|
|
|
|
environment:
|
|
|
|
- "MYSQL_USER=misp"
|
|
|
|
- "MYSQL_PASSWORD=example"
|
|
|
|
- "MYSQL_ROOT_PASSWORD=password"
|
|
|
|
- "MYSQL_DATABASE=misp"
|
|
|
|
|
|
|
|
misp:
|
2020-02-21 21:34:21 +00:00
|
|
|
image: coolacid/misp-docker:core-latest
|
2019-11-28 19:14:38 +00:00
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
- db
|
2019-11-25 21:58:18 +00:00
|
|
|
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"
|
2020-02-25 02:09:08 +00:00
|
|
|
- "./ssl/:/etc/ssl/certs"
|
2019-11-25 21:58:18 +00:00
|
|
|
environment:
|
2019-11-26 21:18:52 +00:00
|
|
|
- "CRON_USER_ID=1"
|
2019-11-27 14:16:05 +00:00
|
|
|
- "REDIS_FQDN=redis"
|
2019-11-25 21:58:18 +00:00
|
|
|
- "MYSQL_PASSWORD=example"
|
2020-01-29 20:15:17 +00:00
|
|
|
- "HOSTNAME=https://localhost"
|
2019-11-28 22:46:30 +00:00
|
|
|
- "INIT=true" # Initialze MISP, things includes, attempting to import SQL and the Files DIR
|
2020-02-27 20:28:21 +00:00
|
|
|
# - "NOREDIR=true" #Do not redirect port 80
|
2019-11-25 21:58:18 +00:00
|
|
|
|
|
|
|
misp-modules:
|
2020-02-21 21:34:21 +00:00
|
|
|
image: coolacid/misp-docker:modules-latest
|
2019-11-28 19:14:38 +00:00
|
|
|
environment:
|
|
|
|
- "REDIS_BACKEND=redis"
|
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
- db
|
|
|
|
|