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:
|
2018-06-13 11:21:32 -04:00
|
|
|
image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
2018-05-18 09:27:46 -04:00
|
|
|
user: node
|
|
|
|
command: npm run test:unit:_run
|
2019-06-19 08:25:18 -04:00
|
|
|
environment:
|
|
|
|
NODE_ENV: test
|
2020-08-10 12:01:12 -04:00
|
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
2018-05-18 09:27:46 -04:00
|
|
|
|
2019-01-30 11:28:37 -05:00
|
|
|
|
2018-05-18 09:27:46 -04:00
|
|
|
test_acceptance:
|
|
|
|
build: .
|
2018-06-13 11:21:32 -04:00
|
|
|
image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
2018-05-18 09:27:46 -04:00
|
|
|
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
|
2020-11-23 10:56:33 -05:00
|
|
|
QUEUES_REDIS_HOST: redis
|
2022-03-31 07:59:17 -04:00
|
|
|
ANALYTICS_QUEUES_REDIS_HOST: redis
|
2018-05-18 09:27:46 -04:00
|
|
|
MONGO_HOST: mongo
|
|
|
|
POSTGRES_HOST: postgres
|
2020-08-10 12:01:12 -04: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
|
|
|
|
GCS_API_SCHEME: http
|
|
|
|
GCS_PROJECT_ID: fake
|
|
|
|
STORAGE_EMULATOR_HOST: http://gcs:9090/storage/v1
|
2018-06-13 11:21:32 -04:00
|
|
|
MOCHA_GREP: ${MOCHA_GREP}
|
2019-06-19 08:25:18 -04:00
|
|
|
NODE_ENV: test
|
2020-08-10 12:01:12 -04:00
|
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
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-08-10 13:00:29 -04:00
|
|
|
GCS_USER_FILES_BUCKET_NAME: fake_userfiles
|
|
|
|
GCS_TEMPLATE_FILES_BUCKET_NAME: fake_templatefiles
|
|
|
|
GCS_PUBLIC_FILES_BUCKET_NAME: fake_publicfiles
|
2018-05-18 09:27:46 -04:00
|
|
|
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
|
|
|
user: node
|
|
|
|
command: npm run test:acceptance:_run
|
2018-05-22 08:45:01 -04:00
|
|
|
|
2019-01-30 11:28:37 -05:00
|
|
|
|
|
|
|
tar:
|
|
|
|
build: .
|
|
|
|
image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
|
|
|
volumes:
|
|
|
|
- ./:/tmp/build/
|
|
|
|
command: tar -czf /tmp/build/build.tar.gz --exclude=build.tar.gz --exclude-vcs .
|
|
|
|
user: root
|
2019-12-16 12:09:38 -05:00
|
|
|
s3:
|
2020-11-23 10:56:33 -05:00
|
|
|
image: adobe/s3mock
|
2019-12-10 06:38:19 -05:00
|
|
|
environment:
|
2020-08-10 12:01:12 -04:00
|
|
|
- initialBuckets=fake_user_files,fake_template_files,fake_public_files,bucket
|
2020-11-23 10:56:33 -05:00
|
|
|
healthcheck:
|
|
|
|
test: wget --quiet --output-document=/dev/null http://localhost:9090
|
|
|
|
interval: 1s
|
|
|
|
retries: 20
|
2020-02-12 05:38:32 -05:00
|
|
|
gcs:
|
2021-01-04 08:32:16 -05:00
|
|
|
image: fsouza/fake-gcs-server:v1.21.2
|
2020-11-23 10:56:33 -05:00
|
|
|
command: ["--port=9090", "--scheme=http"]
|
|
|
|
healthcheck:
|
|
|
|
test: wget --quiet --output-document=/dev/null http://localhost:9090/storage/v1/b
|
|
|
|
interval: 1s
|
|
|
|
retries: 20
|