mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 15:25:57 +00:00
50 lines
1.5 KiB
YAML
50 lines
1.5 KiB
YAML
version: "3.4"
|
|
|
|
services:
|
|
########################################################
|
|
# WEBAPP ###############################################
|
|
########################################################
|
|
webapp:
|
|
image: ocelotsocialnetwork/webapp:test
|
|
build:
|
|
target: test
|
|
environment:
|
|
- NODE_ENV="test"
|
|
volumes:
|
|
- ./coverage:/app/coverage
|
|
|
|
########################################################
|
|
# BACKEND ##############################################
|
|
########################################################
|
|
backend:
|
|
image: ocelotsocialnetwork/backend:test
|
|
build:
|
|
target: test
|
|
environment:
|
|
- NODE_ENV="test"
|
|
|
|
########################################################
|
|
# NEO4J ################################################
|
|
########################################################
|
|
neo4j:
|
|
image: ocelotsocialnetwork/neo4j:community
|
|
|
|
########################################################
|
|
# MAINTENANCE ##########################################
|
|
########################################################
|
|
maintenance:
|
|
image: ocelotsocialnetwork/maintenance:test
|
|
|
|
########################################################
|
|
# MAILSERVER TO FAKE SMTP ##############################
|
|
########################################################
|
|
mailserver:
|
|
image: djfarrelly/maildev
|
|
ports:
|
|
- 1080:80
|
|
networks:
|
|
- external-net
|
|
volumes:
|
|
webapp_node_modules:
|
|
backend_node_modules:
|