overleaf/services/web/docker-compose.yml
Eric Mc Sween 9ddaa8c9f6 Merge pull request #3830 from overleaf/em-upgrade-node-12
Upgrade to Node 12

GitOrigin-RevId: 19870922884b7c98e7e5f2c94df21829672d2db5
2021-04-01 02:05:52 +00:00

82 lines
1.9 KiB
YAML

version: "2.3"
volumes:
data:
services:
test_unit:
build:
context: .
target: base
volumes:
- .:/app
working_dir: /app
environment:
MOCHA_GREP: ${MOCHA_GREP}
NODE_OPTIONS: "--unhandled-rejections=strict"
command: npm run --silent test:unit:app
user: node
test_acceptance:
image: node:12.21.0
volumes:
- .:/app
working_dir: /app
environment:
BCRYPT_ROUNDS: 1
REDIS_HOST: redis
QUEUES_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
NODE_OPTIONS: "--unhandled-rejections=strict"
LOCK_MANAGER_MAX_LOCK_WAIT_TIME: 30000
MONGO_SERVER_SELECTION_TIMEOUT: 600000
MONGO_SOCKET_TIMEOUT: 300000
# SHARELATEX_ALLOW_ANONYMOUS_READ_AND_WRITE_SHARING: 'true'
SHARELATEX_CONFIG:
COOKIE_DOMAIN: .overleaf.test
PUBLIC_URL: 'http://www.overleaf.test:3000'
HTTP_TEST_HOST: www.overleaf.test
OT_JWT_AUTH_KEY: "very secret key"
extra_hosts:
- 'www.overleaf.test:127.0.0.1'
depends_on:
- redis
- mongo
command: npm run --silent test:acceptance:app
test_karma:
build:
context: .
dockerfile: Dockerfile.frontend
volumes:
- .:/app
environment:
NODE_OPTIONS: "--unhandled-rejections=strict"
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}
NODE_OPTIONS: "--unhandled-rejections=strict"
command: npm run --silent test:frontend
user: node
redis:
image: redis
mongo:
image: mongo:4.0.19