-
Notifications
You must be signed in to change notification settings - Fork 135
Open
Labels
Description
Is there a way to define specifically configured crawls while running ache on server mode?
I am using a docker compose file which is structured as my docker-compose file with the startCrawl command but when I look into the data-ache folder, the config folder that has been created has the default ache.yml and no link-filters.yml file.
version: '2'
services:
ache:
image: vidanyu/ache
entrypoint: sh -c 'sleep 10 && /ache/bin/ache startServer -d /data' -c /config/
ports:
- "8080:8080"
volumes:
- ./data-ache/:/data
- ./:/configAlso, after the server is up, and I can create new crawls from the interface, how can I specify that for example, a new focused crawl has a different ache.yml file from a deep crawl that was in the first configuration when I ran the command, without restarting the docker container/server?