misp-docker/docker-compose.yml

87 lines
3.3 KiB
YAML
Raw Normal View History

2019-11-25 22:58:18 +01:00
version: '3'
services:
2022-09-03 13:59:35 +02:00
# This is capable to relay via gmail, Amazon SES, or generic relays
# See: https://hub.docker.com/r/ixdotai/smtp
2020-02-12 17:01:14 +01:00
mail:
2022-09-03 13:59:35 +02:00
image: ixdotai/smtp
environment:
- "SMARTHOST_ADDRESS=${SMARTHOST_ADDRESS}"
- "SMARTHOST_PORT=${SMARTHOST_PORT}"
- "SMARTHOST_USER=${SMARTHOST_USER}"
- "SMARTHOST_PASSWORD=${SMARTHOST_PASSWORD}"
- "SMARTHOST_ALIASES=${SMARTHOST_ALIASES}"
2020-02-12 17:01:14 +01:00
2019-11-25 22:58:18 +01:00
redis:
image: redis:5.0.6
db:
2022-09-03 13:59:35 +02:00
# We use MariaDB because it supports ARM and has the expected collations
image: mariadb:10.8.2
2019-11-25 22:58:18 +01:00
restart: always
environment:
- "MYSQL_USER=misp"
- "MYSQL_PASSWORD=example"
- "MYSQL_ROOT_PASSWORD=password"
- "MYSQL_DATABASE=misp"
volumes:
- mysql_data:/var/lib/mysql
cap_add:
- SYS_NICE # CAP_SYS_NICE Prevent runaway mysql log
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:
2022-09-03 13:59:35 +02:00
- "./configs/:/var/www/MISP/app/Config/"
2019-11-25 22:58:18 +01:00
- "./logs/:/var/www/MISP/app/tmp/logs/"
- "./files/:/var/www/MISP/app/files"
- "./ssl/:/etc/nginx/certs"
2020-03-06 17:10:24 +01:00
# - "./examples/custom-entrypoint.sh:/custom-entrypoint.sh" # Use the example custom-entrypoint.sh
2022-09-03 13:59:35 +02:00
- "./.gnupg:/var/www/MISP/.gnupg"
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" # NOTE: This should be AlphaNum with no Special Chars. Otherwise, edit config files after first run.
# - "MYSQL_DATABASE=misp"
# Optional Settings
# - "NOREDIR=true" # Do not redirect port 80
# - "DISIPV6=true" # Disable IPV6 in nginx
2021-04-07 16:46:05 +02:00
# - "CERTAUTH=optional" # Can be set to optional or on - Step 2 of https://github.com/MISP/MISP/tree/2.4/app/Plugin/CertAuth is still required
# - "SECURESSL=true" # Enable higher security SSL in nginx
2020-08-26 02:27:53 +02:00
# - "MISP_MODULES_FQDN=http://misp-modules" # Set the MISP Modules FQDN, used for Enrichment_services_url/Import_services_url/Export_services_url
2022-09-03 13:59:35 +02:00
# - "WORKERS=1" # Legacy variable controlling the number of parallel workers (use variables below instead)
# - "NUM_WORKERS_DEFAULT=5" # To set the number of default workers
# - "NUM_WORKERS_PRIO=5" # To set the number of prio workers
# - "NUM_WORKERS_EMAIL=5" # To set the number of email workers
# - "NUM_WORKERS_UPDATE=1" # To set the number of update workers
# - "NUM_WORKERS_CACHE=5" # To set the number of cache workers
# Custom Settings
- "ADMIN_EMAIL=${ADMIN_EMAIL}"
- "ADMIN_KEY=${ADMIN_KEY}"
- "ADMIN_ORG=${ADMIN_ORG}"
- "GPG_PASSPHRASE=${GPG_PASSPHRASE}"
- "NSX_ANALYSIS_API_TOKEN=${NSX_ANALYSIS_API_TOKEN}"
- "NSX_ANALYSIS_KEY=${NSX_ANALYSIS_KEY}"
- "VIRUSTOTAL_KEY=${VIRUSTOTAL_KEY}"
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: