20 lines
567 B
YAML
20 lines
567 B
YAML
# 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:
|
||
ports: [ "3009:3009" ]
|
||
environment:
|
||
NODE_ENV: "tests"
|
||
NODE_APP_INSTANCE: "tests-alt"
|
||
entities-search-engine:
|
||
ports: [ "3214:3214" ]
|
||
environment:
|
||
NODE_ENV: "tests"
|