File size: 510 Bytes
7c89ed7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ---
version: '3.7'
services:
alerts:
image: mozdef/mozdef_alerts
build:
context: ../../
dockerfile: docker/compose/mozdef_alerts/Dockerfile
cache_from:
- mozdef/mozdef_alerts
- mozdef_alerts:latest
restart: always
command: bash -c 'python -i'
stdin_open: true
tty: true
depends_on:
- base
- elasticsearch
- rabbitmq
- bootstrap
networks:
- default
volumes:
- ../../alerts:/opt/mozdef/envs/mozdef/alerts |