-use of Dockerfile versus run from docker-compose.yml, because docker alone can build services. move dockerfiles to root folder of each repos? -cleanup dockerfile.inventaire setup
27 lines
576 B
CoffeeScript
Executable File
27 lines
576 B
CoffeeScript
Executable File
module.exports =
|
|
host: '0.0.0.0'
|
|
port: 3006
|
|
elasticsearch:
|
|
host: 'http://elasticsearch:9200'
|
|
db:
|
|
protocol: 'http'
|
|
# host defined in docker-compose couchdb image name
|
|
host: 'couch'
|
|
port: '5984'
|
|
username: 'couchdb'
|
|
password: 'password'
|
|
debug: true
|
|
enableDesignDocSync: true
|
|
replication:
|
|
username: 'couchdb'
|
|
password: 'password'
|
|
jobs:
|
|
'wd:popularity':
|
|
run: false
|
|
'inv:deduplicate':
|
|
run: true
|
|
entitiesSearchEngine:
|
|
host: 'http://entities-search-engine:3213'
|
|
updateEnabled: true
|
|
delay: 3000
|