2018-10-14 21:47:48 +02:00
|
|
|
|
# Use with `docker-compose.yml`. Use the -f option
|
|
|
|
|
|
# to specify the list of files. Compose merges files in the
|
|
|
|
|
|
# order they’re specified on the command line.
|
|
|
|
|
|
# See https://docs.docker.com/compose/extends
|
|
|
|
|
|
version: '3'
|
|
|
|
|
|
services:
|
|
|
|
|
|
couch:
|
|
|
|
|
|
volumes:
|
|
|
|
|
|
# backup folder when container is removed
|
|
|
|
|
|
- './data/couch-test:/usr/local/var/lib/couchdb'
|
|
|
|
|
|
inventaire:
|
2018-12-17 22:56:17 +01:00
|
|
|
|
ports: [ "3009:3009" ]
|
2018-10-14 21:47:48 +02:00
|
|
|
|
environment:
|
|
|
|
|
|
NODE_ENV: "tests"
|
|
|
|
|
|
NODE_APP_INSTANCE: "tests-alt"
|
|
|
|
|
|
entities-search-engine:
|
2018-12-17 22:56:17 +01:00
|
|
|
|
ports: [ "3214:3214" ]
|
2018-10-14 21:47:48 +02:00
|
|
|
|
environment:
|
|
|
|
|
|
NODE_ENV: "tests"
|