-
I'm new to this project, and I'm trying to fire it up using docker-compose using the instructions in the docs. After bringing up the elasticsearch container, I try to bring up the fscrawler container and I receive the following message:
Here's my compose file, copied from the docs and modified for my index and source directory: version: '3'
services:
# Elasticsearch Cluster
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:$ELASTIC_VERSION
container_name: elasticsearch
environment:
- bootstrap.memory_lock=true
- discovery.type=single-node
restart: always
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- ./data:/usr/share/elasticsearch/data
ports:
- 9200:9200
networks:
- fscrawler_net
# FSCrawler
fscrawler:
image: dadoonet/fscrawler:$FSCRAWLER_VERSION
container_name: fscrawler
restart: always
volumes:
- ./config:/root/.fscrawler
- ./logs:/usr/share/fscrawler/logs
- /Users/chris/Documents/wiki-data/processed:/tmp/es:ro
depends_on:
- elasticsearch
command: fscrawler --rest sources
networks:
- fscrawler_net
volumes:
data:
driver: local
networks:
fscrawler_net:
driver: bridge Any help would be greatly appreciated. Thanks, |
Beta Was this translation helpful? Give feedback.
Answered by
dadoonet
Sep 14, 2021
Replies: 1 comment 3 replies
-
That's a bug. Have a look at #1229. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
cwperry
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's a bug. Have a look at #1229.