This commit is contained in:
Jeremias Pretto
2021-03-23 15:19:03 -03:00
parent 5f1e2c8f1c
commit 5fba132f9c
3 changed files with 4 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
echo "Installing requirements for bots in dev repository" echo "Installing requirements for bots in dev repository"
for file in $(find /opt/dev/mybots -name "*REQUIREMENTS.txt"); do pip3 install -r $file; done for file in $(find /opt/dev/mybots -name "*REQUIREMENTS.txt"); do pip3 install -r $file; done

View File

@@ -37,7 +37,7 @@ services:
INTELMQ_PIPELINE_HOST: redis INTELMQ_PIPELINE_HOST: redis
INTELMQ_REDIS_CACHE_HOST: redis INTELMQ_REDIS_CACHE_HOST: redis
# Mail handler # Mail handler
LOG_MAIL_ENABLED: false LOG_MAIL_ENABLED: "false"
LOG_MAIL_LEVEL: "logging.ERROR" LOG_MAIL_LEVEL: "logging.ERROR"
LOG_MAIL_MAILHOST: "mail.example.unlp.edu.ar" LOG_MAIL_MAILHOST: "mail.example.unlp.edu.ar"
LOG_MAIL_PORT: 25 LOG_MAIL_PORT: 25
@@ -47,11 +47,11 @@ services:
LOG_MAIL_CREDENTIALS: None #tuple (username, password) LOG_MAIL_CREDENTIALS: None #tuple (username, password)
LOG_MAIL_SECURE: None LOG_MAIL_SECURE: None
# Start botnet at boot # Start botnet at boot
ENABLE_BOTNET_AT_BOOT: true ENABLE_BOTNET_AT_BOOT: "true"
networks: networks:
- intelmq-internal - intelmq-internal
networks: networks:
intelmq-internal: intelmq-internal:
driver: bridge driver: bridge