mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
ff7e016227
Adds Dockerfile to make headless Chrome image
36 lines
630 B
YAML
36 lines
630 B
YAML
version: "2"
|
|
|
|
volumes:
|
|
data:
|
|
|
|
services:
|
|
test_acceptance:
|
|
image: node:6.9.5
|
|
volumes:
|
|
- .:/app:ro
|
|
- data:/app/data:rw
|
|
working_dir: /app
|
|
environment:
|
|
REDIS_HOST: redis
|
|
MONGO_URL: "mongodb://mongo/sharelatex"
|
|
SHARELATEX_ALLOW_PUBLIC_ACCESS: 'true'
|
|
PROJECT_HISTORY_ENABLED: 'true'
|
|
depends_on:
|
|
- redis
|
|
- mongo
|
|
command: node app.js
|
|
|
|
test_frontend:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.frontend
|
|
volumes:
|
|
- .:/app
|
|
working_dir: /app
|
|
command: npm run test:frontend
|
|
|
|
redis:
|
|
image: redis
|
|
|
|
mongo:
|
|
image: mongo:3.4.6
|