mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-08 06:22:53 +00:00
28 lines
716 B
YAML
28 lines
716 B
YAML
version: '3'
|
|
services:
|
|
backend:
|
|
build: .
|
|
ports:
|
|
- '3000:3000'
|
|
environment:
|
|
STAPPS_LOG_LEVEL: '31'
|
|
STAPPS_EXIT_LEVEL: '8'
|
|
NODE_CONFIG_ENV: 'elasticsearch'
|
|
NODE_ENV: 'integration-test'
|
|
ALLOW_NO_TRANSPORT: 'true'
|
|
ES_ADDR: 'http://elasticsearch:9200'
|
|
|
|
elasticsearch:
|
|
build: ../database
|
|
ports:
|
|
- '9200:9200'
|
|
|
|
api-cli:
|
|
build: ../../packages/api-cli
|
|
environment:
|
|
STAPPS_LOG_LEVEL: '31'
|
|
STAPPS_EXIT_LEVEL: '8'
|
|
volumes:
|
|
- ./node_modules/@openstapps/core/test/resources:/@openstapps/core/test/resources:ro
|
|
command: e2e http://backend:3000 --waiton tcp:backend:3000 --samples /@openstapps/core/test/resources/indexable
|