mirror of
https://github.com/certat/intelmq-docker.git
synced 2025-12-06 09:12:49 +01:00
47 lines
1.5 KiB
YAML
47 lines
1.5 KiB
YAML
version: "3"
|
|
services:
|
|
redis:
|
|
image: redis:latest
|
|
volumes:
|
|
- ./example_config/redis/redis.conf:/usr/local/etc/redis/redis.conf
|
|
command:
|
|
- redis-server
|
|
- /usr/local/etc/redis/redis.conf
|
|
networks:
|
|
- intelmq-internal
|
|
nginx:
|
|
image: certat/intelmq-nginx:latest
|
|
ports:
|
|
- 1337:80
|
|
depends_on:
|
|
- intelmq
|
|
networks:
|
|
- intelmq-internal
|
|
intelmq:
|
|
build: .docker/intelmq-full-dev
|
|
volumes:
|
|
- ./example_config/intelmq/etc/:/opt/intelmq/etc/
|
|
- ./example_config/intelmq-api/config.json:/etc/intelmq/api-config.json
|
|
- ./intelmq_logs:/opt/intelmq/var/log
|
|
- ./intelmq_output:/opt/intelmq/var/lib/bots
|
|
- ./my_bots:/my_bots
|
|
depends_on:
|
|
- redis
|
|
environment:
|
|
ENABLE_BOTNET_AT_BOOT: "false"
|
|
IS_DEV: "true"
|
|
INTELMQ_SOURCE_PIPELINE_BROKER: "redis"
|
|
INTELMQ_PIPELINE_BROKER: "redis"
|
|
INTELMQ_DESTIONATION_PIPELINE_BROKER: "redis"
|
|
INTELMQ_PIPELINE_HOST: redis
|
|
INTELMQ_SOURCE_PIPELINE_HOST: redis
|
|
INTELMQ_DESTINATION_PIPELINE_HOST: redis
|
|
INTELMQ_REDIS_CACHE_HOST: redis
|
|
MY_FORK: "/my_bots"
|
|
MY_BOTS_FOLDER: "bots"
|
|
networks:
|
|
- intelmq-internal
|
|
networks:
|
|
intelmq-internal:
|
|
driver: bridge
|