overleaf/services/web/docker-compose.yml
Christopher Hoskin 6a7c2e85ff Merge pull request #2565 from overleaf/jpa-node-10-18-1
[misc] upgrade node to version 10.18.1

GitOrigin-RevId: 1f27198c6db8253edff1e1425edbfd97c2721a04
2020-02-05 04:25:20 +00:00

52 lines
1.1 KiB
YAML

version: "2"
volumes:
data:
services:
test_unit:
image: gcr.io/overleaf-ops/node:10.18.1
volumes:
- .:/app
working_dir: /app
environment:
MOCHA_GREP: ${MOCHA_GREP}
command: npm run test:unit:app
user: node
test_acceptance:
image: gcr.io/overleaf-ops/node:10.18.1
volumes:
- .:/app
working_dir: /app
environment:
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
SHARELATEX_CONFIG:
command: npm run test:acceptance:app
depends_on:
- redis
- mongo
command: npm run test:acceptance:app
test_frontend:
build:
context: .
dockerfile: Dockerfile.frontend
volumes:
- .:/app
working_dir: /app
command: npm run test:frontend:single
redis:
image: redis
mongo:
image: mongo:3.6.16