version: '3' services: # This is capible to relay via gmail, Amazon SES, or generic relays # See: https://hub.docker.com/r/namshi/smtp mail: image: namshi/smtp redis: image: redis:5.0.6 db: image: mysql:8.0.19 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: coolacid/misp-docker:core-latest 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/ssl/certs" # - "./examples/custom-entrypoint.sh:/custom-entrypoint.sh" # Use the example custom-entrypoint.sh environment: - "CRON_USER_ID=1" - "REDIS_FQDN=redis" - "MYSQL_PASSWORD=example" - "HOSTNAME=https://localhost" - "INIT=true" # Initialze MISP, things includes, attempting to import SQL and the Files DIR # - "NOREDIR=true" #Do not redirect port 80 # - "SYNCSERVERS=1 2 3 4" # - "DISIPV6=true" misp-modules: image: coolacid/misp-docker:modules-latest environment: - "REDIS_BACKEND=redis" depends_on: - redis - db