# This file was auto-generated, do not edit it directly. # Instead run bin/update_build_scripts from # https://github.com/sharelatex/sharelatex-dev-environment # Version: 1.3.5 version: "2.3" services: test_unit: build: context: . target: base volumes: - .:/app working_dir: /app environment: MOCHA_GREP: ${MOCHA_GREP} NODE_ENV: test command: npm run test:unit user: node test_acceptance: build: context: . target: base volumes: - .:/app working_dir: /app environment: ELASTIC_SEARCH_DSN: es:9200 REDIS_HOST: redis MONGO_HOST: mongo POSTGRES_HOST: postgres AWS_S3_ENDPOINT: http://s3:9090 AWS_S3_PATH_STYLE: 'true' AWS_ACCESS_KEY_ID: fake AWS_SECRET_ACCESS_KEY: fake MOCHA_GREP: ${MOCHA_GREP} LOG_LEVEL: ERROR NODE_ENV: test ENABLE_CONVERSIONS: "true" USE_PROM_METRICS: "true" 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 user: node depends_on: s3: condition: service_healthy command: npm run test:acceptance s3: image: adobe/s3mock environment: - initialBuckets=fake_user_files,fake_template_files,fake_public_files,bucket healthcheck: test: ["CMD", "curl", "-f", "http://localhost:9090"]