overleaf/services/web/docker-compose.yml
Henry Oswald 321a4c1f8a Merge pull request #3085 from overleaf/ho-mongo-4.0
bump mongo to 4.0.19 to see if tests pass on ci

GitOrigin-RevId: 70fa2ed6c33c4fa0f996fb975935b71e643fa1c7
2020-08-10 15:55:43 +00:00

69 lines
1.4 KiB
YAML

version: "2.3"
volumes:
data:
services:
test_unit:
build:
context: .
target: base
volumes:
- .:/app
working_dir: /app
environment:
MOCHA_GREP: ${MOCHA_GREP}
command: npm run --silent test:unit:app
user: node
test_acceptance:
image: node:10.21.0
volumes:
- .:/app
working_dir: /app
environment:
BCRYPT_ROUNDS: 1
REDIS_HOST: redis
MONGO_URL: "mongodb://mongo/sharelatex"
SHARELATEX_ALLOW_PUBLIC_ACCESS: 'true'
PROJECT_HISTORY_ENABLED: 'true'
LINKED_URL_PROXY: 'http://localhost:6543'
ENABLED_LINKED_FILE_TYPES: 'url,project_file,project_output_file,mendeley,zotero'
MOCHA_GREP: ${MOCHA_GREP}
NODE_ENV: test
LOCK_MANAGER_MAX_LOCK_WAIT_TIME: 30000
MONGO_SOCKET_TIMEOUT: 60000
# SHARELATEX_ALLOW_ANONYMOUS_READ_AND_WRITE_SHARING: 'true'
SHARELATEX_CONFIG:
depends_on:
- redis
- mongo
command: npm run --silent test:acceptance:app
test_karma:
build:
context: .
dockerfile: Dockerfile.frontend
volumes:
- .:/app
working_dir: /app
command: npm run --silent test:karma:single
test_frontend:
build:
context: .
target: base
volumes:
- .:/app
working_dir: /app
environment:
MOCHA_GREP: ${MOCHA_GREP}
command: npm run --silent test:frontend
user: node
redis:
image: redis
mongo:
image: mongo:4.0.19