Fixed relative paths

Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at>
This commit is contained in:
Sebastian Waldbauer
2020-11-02 15:52:45 +01:00
parent a32af49d12
commit 4c01db1d9e

View File

@@ -3,7 +3,7 @@ services:
redis: redis:
image: redis:latest image: redis:latest
volumes: volumes:
- ~/example_config/redis/redis.conf:/usr/local/etc/redis/redis.conf - ./example_config/redis/redis.conf:/usr/local/etc/redis/redis.conf
command: command:
- redis-server - redis-server
- /usr/local/etc/redis/redis.conf - /usr/local/etc/redis/redis.conf
@@ -24,10 +24,10 @@ services:
intelmq-full: intelmq-full:
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-manager:/opt/intelmq-manager/config - ./example_config/intelmq-manager:/opt/intelmq-manager/config
- ~/example_config/intelmq/var/log:/opt/intelmq/var/log - ./example_config/intelmq/var/log:/opt/intelmq/var/log
- ~/example_config/intelmq/var/lib:/opt/intelmq/var/lib - ./example_config/intelmq/var/lib:/opt/intelmq/var/lib
ports: ports:
- 1337:8080 - 1337:8080
depends_on: depends_on: