mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
Here are the issues * webapp was built with `NODE_ENV=production` but started with `NODE_ENV=development` * using the provided `docker-compose.travis.yml` the command `yarn run start` would look in the wrong folder * removed duplicate environment definition
28 lines
500 B
YAML
28 lines
500 B
YAML
version: "3.4"
|
|
|
|
services:
|
|
neo4j:
|
|
environment:
|
|
- NEO4J_AUTH=none
|
|
ports:
|
|
- 7687:7687
|
|
- 7474:7474
|
|
webapp:
|
|
build:
|
|
context: webapp
|
|
target: build-and-test
|
|
volumes:
|
|
#/nitro-web
|
|
- ./webapp/coverage:/nitro-web/coverage
|
|
backend:
|
|
image: humanconnection/nitro-backend:builder
|
|
build:
|
|
context: backend
|
|
target: builder
|
|
volumes:
|
|
- ./backend/coverage:/nitro-backend/coverage
|
|
ports:
|
|
- 4001:4001
|
|
- 4123:4123
|
|
|