mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
* [monorepo] avoid corepack network requests - Download yarn via corepack as the first step in all the docker files - Turn off networking in corepack - Do not run things in the upstream node image Instead, use the monorepo image, or base layer in all the services. - Always build the base layer when running tests (uses cache) * [monorepo] install corepack in shared place * [clsi-lb] remove unrelated changes * [web] add missing DC_RUN_FLAGS * [monorepo] only rebuild test images locally Also remove spurious build config in docker-compose.ci.yml. * [server-ce] test: make yarn files available to host-admin and e2e * [monorepo] put the corepack install snippet in a few more places GitOrigin-RevId: 38005016ae5a708e12295e246269d6c18fece937
80 lines
2.8 KiB
YAML
80 lines
2.8 KiB
YAML
# This file was auto-generated, do not edit it directly.
|
|
# Instead run bin/update_build_scripts from
|
|
# https://github.com/overleaf/internal/
|
|
|
|
services:
|
|
test_unit:
|
|
build:
|
|
context: ../..
|
|
dockerfile: services/chat/Dockerfile
|
|
target: base
|
|
volumes:
|
|
- .:/overleaf/services/chat
|
|
- ../../node_modules:/overleaf/node_modules
|
|
- ../../libraries:/overleaf/libraries
|
|
- ../../package.json:/overleaf/package.json
|
|
- ../../.yarnrc.yml:/overleaf/.yarnrc.yml
|
|
- ../../yarn.lock:/overleaf/yarn.lock
|
|
- ../../.yarn:/overleaf/.yarn
|
|
- ../../bin/shared/wait_for_it:/overleaf/bin/shared/wait_for_it
|
|
- ../../tools/migrations:/overleaf/tools/migrations
|
|
working_dir: /overleaf/services/chat
|
|
environment:
|
|
MOCHA_GREP: ${MOCHA_GREP}
|
|
LOG_LEVEL: ${LOG_LEVEL:-}
|
|
MONGO_CONNECTION_STRING: mongodb://mongo/test-overleaf
|
|
NODE_ENV: test
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
|
entrypoint: /overleaf/bin/shared/wait_for_it mongo:27017 --timeout=60 --
|
|
command: yarn run --silent test:unit
|
|
user: node
|
|
depends_on:
|
|
mongo:
|
|
condition: service_started
|
|
|
|
test_acceptance:
|
|
build:
|
|
context: ../..
|
|
dockerfile: services/chat/Dockerfile
|
|
target: base
|
|
volumes:
|
|
- .:/overleaf/services/chat
|
|
- ../../node_modules:/overleaf/node_modules
|
|
- ../../libraries:/overleaf/libraries
|
|
- ../../package.json:/overleaf/package.json
|
|
- ../../.yarnrc.yml:/overleaf/.yarnrc.yml
|
|
- ../../yarn.lock:/overleaf/yarn.lock
|
|
- ../../.yarn:/overleaf/.yarn
|
|
- ../../bin/shared/wait_for_it:/overleaf/bin/shared/wait_for_it
|
|
- ../../tools/migrations:/overleaf/tools/migrations
|
|
working_dir: /overleaf/services/chat
|
|
environment:
|
|
RETRIES:
|
|
MONGO_CONNECTION_STRING: mongodb://mongo/test-overleaf
|
|
POSTGRES_HOST: postgres
|
|
MOCHA_GREP: ${MOCHA_GREP}
|
|
LOG_LEVEL: ${LOG_LEVEL:-}
|
|
NODE_ENV: test
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
|
user: node
|
|
depends_on:
|
|
mongo:
|
|
condition: service_started
|
|
entrypoint: /overleaf/bin/shared/wait_for_it mongo:27017 --timeout=60 --
|
|
command: yarn run --silent test:acceptance
|
|
|
|
mongo:
|
|
image: mongo:8.0.11
|
|
command: --replSet overleaf --notablescan
|
|
volumes:
|
|
- ../../bin/shared/mongodb-init-replica-set.js:/docker-entrypoint-initdb.d/mongodb-init-replica-set.js
|
|
- ../../bin/shared/mongodb-docker-entrypoint-wait.sh:/mongodb-docker-entrypoint-wait.sh
|
|
entrypoint: /mongodb-docker-entrypoint-wait.sh
|
|
environment:
|
|
MONGO_INITDB_DATABASE: sharelatex
|
|
extra_hosts:
|
|
# Required when using the automatic database setup for initializing the
|
|
# replica set. This override is not needed when running the setup after
|
|
# starting up mongo.
|
|
- mongo:127.0.0.1
|