From c6ec8e39be9839aa9b3b50d25bde37bdf0d720d8 Mon Sep 17 00:00:00 2001 From: Sebastian Waldbauer Date: Thu, 12 Nov 2020 12:47:50 +0100 Subject: [PATCH] Only available on 127.0.0.1 Fixes #1 Signed-off-by: Sebastian Waldbauer --- .gitignore | 1 + docker-compose.yml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..45d4412 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +intelmq_logs/ diff --git a/docker-compose.yml b/docker-compose.yml index e271c64..f2916c4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -22,14 +22,14 @@ services: # IntelMQ with IntelMQ-Manager! intelmq-full: - image: certat/intelmq-full:1.0 + image: intelmq-full:1.0 volumes: - ./example_config/intelmq/etc:/opt/intelmq/etc - ./example_config/intelmq-manager:/opt/intelmq-manager/config - ./intelmq_logs:/opt/intelmq/var/log - ./example_config/intelmq/var/lib:/opt/intelmq/var/lib ports: - - 1337:8080 + - 127.0.0.1:1337:8080/tcp depends_on: - redis - postgres