misp-docker/docker-compose.yml

62 lines
1.7 KiB
YAML
Raw Normal View History

2019-11-25 22:58:18 +01:00
version: '3'
services:
2020-02-12 17:01:14 +01: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 22:58:18 +01:00
redis:
image: redis:5.0.6
db:
2020-01-28 22:04:09 +01:00
image: mysql:8.0.19
2019-11-25 22:58:18 +01:00
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
- "MYSQL_USER=misp"
- "MYSQL_PASSWORD=example"
- "MYSQL_ROOT_PASSWORD=password"
- "MYSQL_DATABASE=misp"
volumes:
- mysql_data:/var/lib/mysql
2019-11-25 22:58:18 +01:00
misp:
image: coolacid/misp-docker:core-latest
depends_on:
- redis
- db
2019-11-25 22:58:18 +01: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 03:09:08 +01:00
- "./ssl/:/etc/ssl/certs"
2020-03-06 17:10:24 +01:00
# - "./examples/custom-entrypoint.sh:/custom-entrypoint.sh" # Use the example custom-entrypoint.sh
2019-11-25 22:58:18 +01:00
environment:
- "HOSTNAME=https://localhost"
- "REDIS_FQDN=redis"
- "INIT=true" # Initialze MISP, things includes, attempting to import SQL and the Files DIR
- "CRON_USER_ID=1" # The MISP user ID to run cron jobs as
# - "SYNCSERVERS=1 2 3 4" # The MISP Feed servers to sync in the cron job
# Database Configuration (And their defaults)
# - "MYSQL_HOST=db"
# - "MYSQL_USER=misp"
# - "MYSQL_PASSWORD=example"
# - "MYSQL_DATABASE=misp"
# Optional Settings
# - "NOREDIR=true" # Do not redirect port 80
# - "DISIPV6=true" # Disable IPV6 in nginx
2019-11-25 22:58:18 +01:00
misp-modules:
image: coolacid/misp-docker:modules-latest
environment:
- "REDIS_BACKEND=redis"
depends_on:
- redis
- db
volumes:
mysql_data: