2018-05-18 09:27:46 -04:00
|
|
|
# This file was auto-generated, do not edit it directly.
|
|
|
|
# Instead run bin/update_build_scripts from
|
|
|
|
# https://github.com/sharelatex/sharelatex-dev-environment
|
|
|
|
|
2020-02-10 11:10:42 -05:00
|
|
|
version: "2.3"
|
2018-05-18 09:27:46 -04:00
|
|
|
|
|
|
|
services:
|
|
|
|
test_unit:
|
2020-02-10 11:10:42 -05:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
target: base
|
2018-05-18 09:27:46 -04:00
|
|
|
volumes:
|
|
|
|
- .:/app
|
|
|
|
working_dir: /app
|
|
|
|
environment:
|
|
|
|
MOCHA_GREP: ${MOCHA_GREP}
|
2019-06-19 08:25:18 -04:00
|
|
|
NODE_ENV: test
|
2018-05-18 09:27:46 -04:00
|
|
|
command: npm run test:unit
|
|
|
|
user: node
|
|
|
|
|
|
|
|
test_acceptance:
|
2020-02-10 11:10:42 -05:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
target: base
|
2018-05-18 09:27:46 -04:00
|
|
|
volumes:
|
|
|
|
- .:/app
|
|
|
|
working_dir: /app
|
|
|
|
environment:
|
2018-06-13 11:21:32 -04:00
|
|
|
ELASTIC_SEARCH_DSN: es:9200
|
2018-05-18 09:27:46 -04:00
|
|
|
REDIS_HOST: redis
|
|
|
|
MONGO_HOST: mongo
|
|
|
|
POSTGRES_HOST: postgres
|
|
|
|
MOCHA_GREP: ${MOCHA_GREP}
|
2019-06-19 08:25:18 -04:00
|
|
|
LOG_LEVEL: ERROR
|
|
|
|
NODE_ENV: test
|
2019-12-16 12:09:38 -05:00
|
|
|
ENABLE_CONVERSIONS: "true"
|
2019-12-05 10:25:35 -05:00
|
|
|
USE_PROM_METRICS: "true"
|
2019-12-05 08:55:08 -05:00
|
|
|
AWS_S3_USER_FILES_BUCKET_NAME: fake_user_files
|
|
|
|
AWS_S3_TEMPLATE_FILES_BUCKET_NAME: fake_template_files
|
|
|
|
AWS_S3_PUBLIC_FILES_BUCKET_NAME: fake_public_files
|
2020-02-12 05:38:32 -05:00
|
|
|
AWS_S3_ENDPOINT: http://s3:9090
|
|
|
|
AWS_S3_PATH_STYLE: 'true'
|
|
|
|
AWS_ACCESS_KEY_ID: fake
|
|
|
|
AWS_SECRET_ACCESS_KEY: fake
|
|
|
|
GCS_API_ENDPOINT: gcs:9090
|
2020-03-04 12:01:20 -05:00
|
|
|
GCS_API_SCHEME: http
|
2020-02-12 05:38:32 -05:00
|
|
|
GCS_USER_FILES_BUCKET_NAME: fake_userfiles
|
|
|
|
GCS_TEMPLATE_FILES_BUCKET_NAME: fake_templatefiles
|
|
|
|
GCS_PUBLIC_FILES_BUCKET_NAME: fake_publicfiles
|
2020-03-04 12:01:20 -05:00
|
|
|
STORAGE_EMULATOR_HOST: http://gcs:9090/storage/v1
|
2018-05-18 09:27:46 -04:00
|
|
|
user: node
|
|
|
|
depends_on:
|
2019-12-16 12:09:38 -05:00
|
|
|
s3:
|
2019-12-10 11:11:44 -05:00
|
|
|
condition: service_healthy
|
2020-02-12 05:38:32 -05:00
|
|
|
gcs:
|
|
|
|
condition: service_healthy
|
2018-05-18 09:27:46 -04:00
|
|
|
command: npm run test:acceptance
|
2018-06-13 11:21:32 -04:00
|
|
|
|
2019-12-16 12:09:38 -05:00
|
|
|
s3:
|
2020-02-12 05:38:32 -05:00
|
|
|
build:
|
|
|
|
context: test/acceptance/deps
|
|
|
|
dockerfile: Dockerfile.s3mock
|
2019-12-05 08:55:08 -05:00
|
|
|
environment:
|
2020-02-12 05:38:32 -05:00
|
|
|
- initialBuckets=fake_user_files,fake_template_files,fake_public_files
|
|
|
|
|
|
|
|
gcs:
|
|
|
|
build:
|
|
|
|
context: test/acceptance/deps
|
|
|
|
dockerfile: Dockerfile.fake-gcs
|