| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- # This file was auto-generated, do not edit it directly.
- # Instead run bin/update_build_scripts from
- # https://github.com/overleaf/internal/
- version: "2.3"
- services:
- test_unit:
- image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
- user: node
- command: npm run test:unit:_run
- environment:
- NODE_ENV: test
- NODE_OPTIONS: "--unhandled-rejections=strict"
- test_acceptance:
- build: .
- image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
- environment:
- ELASTIC_SEARCH_DSN: es:9200
- REDIS_HOST: redis
- QUEUES_REDIS_HOST: redis
- ANALYTICS_QUEUES_REDIS_HOST: redis
- MONGO_HOST: mongo
- POSTGRES_HOST: postgres
- AWS_S3_ENDPOINT: https://minio:9000
- AWS_S3_PATH_STYLE: 'true'
- AWS_ACCESS_KEY_ID: OVERLEAF_HISTORY_S3_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY: OVERLEAF_HISTORY_S3_SECRET_ACCESS_KEY
- MINIO_ROOT_USER: MINIO_ROOT_USER
- MINIO_ROOT_PASSWORD: MINIO_ROOT_PASSWORD
- GCS_API_ENDPOINT: http://gcs:9090
- GCS_PROJECT_ID: fake
- STORAGE_EMULATOR_HOST: http://gcs:9090/storage/v1
- MOCHA_GREP: ${MOCHA_GREP}
- NODE_ENV: test
- NODE_OPTIONS: "--unhandled-rejections=strict"
- volumes:
- - ./test/acceptance/certs:/certs
- depends_on:
- mongo:
- condition: service_started
- redis:
- condition: service_healthy
- postgres:
- condition: service_healthy
- certs:
- condition: service_completed_successfully
- minio:
- condition: service_started
- minio_setup:
- condition: service_completed_successfully
- gcs:
- condition: service_healthy
- user: node
- command: npm run test:acceptance
- 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
- redis:
- image: redis
- healthcheck:
- test: ping="$$(redis-cli ping)" && [ "$$ping" = 'PONG' ]
- interval: 1s
- retries: 20
- mongo:
- image: mongo:6.0.13
- command: --replSet overleaf
- volumes:
- - ../../bin/shared/mongodb-init-replica-set.js:/docker-entrypoint-initdb.d/mongodb-init-replica-set.js
- 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
- postgres:
- image: postgres:10
- environment:
- POSTGRES_USER: overleaf
- POSTGRES_PASSWORD: overleaf
- POSTGRES_DB: overleaf-history-v1-test
- volumes:
- - ./test/acceptance/pg-init/:/docker-entrypoint-initdb.d/
- healthcheck:
- test: pg_isready --quiet
- interval: 1s
- retries: 20
- certs:
- image: node:20.18.2
- volumes:
- - ./test/acceptance/certs:/certs
- working_dir: /certs
- entrypoint: sh
- command:
- - '-cex'
- - |
- if [ ! -f ./certgen ]; then
- wget -O ./certgen "https://github.com/minio/certgen/releases/download/v1.3.0/certgen-linux-$(dpkg --print-architecture)"
- chmod +x ./certgen
- fi
- if [ ! -f private.key ] || [ ! -f public.crt ]; then
- ./certgen -host minio
- fi
- minio:
- image: minio/minio:RELEASE.2024-10-13T13-34-11Z
- command: server /data
- volumes:
- - ./test/acceptance/certs:/root/.minio/certs
- environment:
- MINIO_ROOT_USER: MINIO_ROOT_USER
- MINIO_ROOT_PASSWORD: MINIO_ROOT_PASSWORD
- depends_on:
- certs:
- condition: service_completed_successfully
- minio_setup:
- depends_on:
- certs:
- condition: service_completed_successfully
- minio:
- condition: service_started
- image: minio/mc:RELEASE.2024-10-08T09-37-26Z
- volumes:
- - ./test/acceptance/certs:/root/.mc/certs/CAs
- entrypoint: sh
- command:
- - '-cex'
- - |
- sleep 1
- mc alias set s3 https://minio:9000 MINIO_ROOT_USER MINIO_ROOT_PASSWORD \
- || sleep 3 && \
- mc alias set s3 https://minio:9000 MINIO_ROOT_USER MINIO_ROOT_PASSWORD \
- || sleep 3 && \
- mc alias set s3 https://minio:9000 MINIO_ROOT_USER MINIO_ROOT_PASSWORD \
- || sleep 3 && \
- mc alias set s3 https://minio:9000 MINIO_ROOT_USER MINIO_ROOT_PASSWORD
- mc mb --ignore-existing s3/overleaf-test-history-chunks
- mc mb --ignore-existing s3/overleaf-test-history-deks
- mc mb --ignore-existing s3/overleaf-test-history-global-blobs
- mc mb --ignore-existing s3/overleaf-test-history-project-blobs
- mc admin user add s3 \
- OVERLEAF_HISTORY_S3_ACCESS_KEY_ID \
- OVERLEAF_HISTORY_S3_SECRET_ACCESS_KEY
- echo '
- {
- "Version": "2012-10-17",
- "Statement": [
- {
- "Effect": "Allow",
- "Action": [
- "s3:ListBucket"
- ],
- "Resource": "arn:aws:s3:::overleaf-test-history-chunks"
- },
- {
- "Effect": "Allow",
- "Action": [
- "s3:PutObject",
- "s3:GetObject",
- "s3:DeleteObject"
- ],
- "Resource": "arn:aws:s3:::overleaf-test-history-chunks/*"
- },
- {
- "Effect": "Allow",
- "Action": [
- "s3:ListBucket"
- ],
- "Resource": "arn:aws:s3:::overleaf-test-history-deks"
- },
- {
- "Effect": "Allow",
- "Action": [
- "s3:PutObject",
- "s3:GetObject",
- "s3:DeleteObject"
- ],
- "Resource": "arn:aws:s3:::overleaf-test-history-deks/*"
- },
- {
- "Effect": "Allow",
- "Action": [
- "s3:ListBucket"
- ],
- "Resource": "arn:aws:s3:::overleaf-test-history-global-blobs"
- },
- {
- "Effect": "Allow",
- "Action": [
- "s3:PutObject",
- "s3:GetObject",
- "s3:DeleteObject"
- ],
- "Resource": "arn:aws:s3:::overleaf-test-history-global-blobs/*"
- },
- {
- "Effect": "Allow",
- "Action": [
- "s3:ListBucket"
- ],
- "Resource": "arn:aws:s3:::overleaf-test-history-project-blobs"
- },
- {
- "Effect": "Allow",
- "Action": [
- "s3:PutObject",
- "s3:GetObject",
- "s3:DeleteObject"
- ],
- "Resource": "arn:aws:s3:::overleaf-test-history-project-blobs/*"
- }
- ]
- }' > policy-history.json
- mc admin policy create s3 overleaf-history policy-history.json
- mc admin policy attach s3 overleaf-history \
- --user=OVERLEAF_HISTORY_S3_ACCESS_KEY_ID
- gcs:
- image: fsouza/fake-gcs-server:1.45.2
- command: ["--port=9090", "--scheme=http"]
- healthcheck:
- test: wget --quiet --output-document=/dev/null http://localhost:9090/storage/v1/b
- interval: 1s
- retries: 20
|