71 lines
2.2 KiB
YAML
71 lines
2.2 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/clsi/Dockerfile
|
|
target: base
|
|
volumes:
|
|
- .:/overleaf/services/clsi
|
|
- ../../node_modules:/overleaf/node_modules
|
|
- ../../libraries:/overleaf/libraries
|
|
- ../../tsconfig.backend.json:/overleaf/tsconfig.backend.json
|
|
working_dir: /overleaf/services/clsi
|
|
environment:
|
|
MOCHA_GREP: ${MOCHA_GREP}
|
|
LOG_LEVEL: ${LOG_LEVEL:-}
|
|
MONGO_CONNECTION_STRING: mongodb://mongo/test-overleaf
|
|
NODE_ENV: test
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
|
command: npm run --silent test:unit
|
|
|
|
test_acceptance:
|
|
build:
|
|
context: ../..
|
|
dockerfile: services/clsi/Dockerfile
|
|
target: base
|
|
volumes:
|
|
- .:/overleaf/services/clsi
|
|
- ../../node_modules:/overleaf/node_modules
|
|
- ../../libraries:/overleaf/libraries
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
working_dir: /overleaf/services/clsi
|
|
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"
|
|
DOWNLOAD_HOST: http://clsi-nginx:8080
|
|
ALLOWED_COMPILE_GROUPS: "clsi-perf simple-latex-file"
|
|
ENABLE_PDF_CACHING: "true"
|
|
PDF_CACHING_ENABLE_WORKER_POOL: "true"
|
|
ALLOWED_IMAGES: quay.io/sharelatex/texlive-full:2025.1
|
|
TEXLIVE_IMAGE: quay.io/sharelatex/texlive-full:2025.1
|
|
TEX_LIVE_IMAGE_NAME_OVERRIDE: us-east1-docker.pkg.dev/overleaf-ops/ol-docker
|
|
TEXLIVE_IMAGE_USER: "tex"
|
|
SANDBOXED_COMPILES: "true"
|
|
SANDBOXED_COMPILES_HOST_DIR_COMPILES: $PWD/compiles
|
|
SANDBOXED_COMPILES_HOST_DIR_OUTPUT: $PWD/output
|
|
depends_on:
|
|
clsi-nginx:
|
|
condition: service_started
|
|
command: npm run --silent test:acceptance
|
|
|
|
clsi-nginx:
|
|
image: nginx:1.28
|
|
read_only: true
|
|
tmpfs:
|
|
- /tmp
|
|
- /var/cache/nginx
|
|
- /run
|
|
volumes:
|
|
- ./output:/output:ro
|
|
- ./nginx.conf:/etc/nginx/conf.d/nginx.conf:ro
|
|
- ./tiny.pdf:/var/clsi/tiny.pdf:ro
|