FIX: whitespaces in docker-compose

Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at>
This commit is contained in:
Sebastian Waldbauer
2021-04-15 12:19:30 +02:00
parent 92c3d2a78b
commit 881475c405

View File

@@ -8,36 +8,34 @@ services:
- redis-server - redis-server
- /usr/local/etc/redis/redis.conf - /usr/local/etc/redis/redis.conf
restart: always restart: always
networks: networks:
- intelmq-internal - intelmq-internal
nginx: nginx:
image: certat/intelmq-nginx:latest image: certat/intelmq-nginx:latest
restart: always restart: always
ports: ports:
- 1337:80 - 1337:80
volumes: depends_on:
- ./intelmq-manager/html:/www
depends_on:
- intelmq - intelmq
networks: networks:
- intelmq-internal - intelmq-internal
intelmq: intelmq:
image: certat/intelmq-full:1.0 image: certat/intelmq-full:1.0
volumes: volumes:
- ./example_config/intelmq/etc/:/opt/intelmq/etc/ - ./example_config/intelmq/etc/:/opt/intelmq/etc/
- ./example_config/intelmq-api:/opt/intelmq-api/config - ./example_config/intelmq-api:/opt/intelmq-api/config
- ./intelmq_logs:/opt/intelmq/var/log - ./intelmq_logs:/opt/intelmq/var/log
- ./intelmq_output:/opt/intelmq/var/lib/bots - ./intelmq_output:/opt/intelmq/var/lib/bots
- ./example_config/intelmq/var/lib/bot:/opt/intelmq/var/lib/bot - ./example_config/intelmq/var/lib/bot:/opt/intelmq/var/lib/bot
depends_on: depends_on:
- redis - redis
environment: environment:
INTELMQ_PIPELINE_DRIVER: "redis" INTELMQ_PIPELINE_DRIVER: "redis"
INTELMQ_PIPELINE_HOST: redis INTELMQ_PIPELINE_HOST: redis
INTELMQ_REDIS_CACHE_HOST: redis INTELMQ_REDIS_CACHE_HOST: redis
networks: networks:
- intelmq-internal - intelmq-internal
networks: networks:
intelmq-internal: intelmq-internal:
driver: bridge driver: bridge