mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 15:25:57 +00:00
44 lines
1.7 KiB
YAML
44 lines
1.7 KiB
YAML
services:
|
|
|
|
webapp:
|
|
# name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there
|
|
image: ghcr.io/ocelot-social-community/ocelot-social/webapp:test
|
|
build:
|
|
target: test
|
|
environment:
|
|
- NODE_ENV="test"
|
|
volumes:
|
|
- ./coverage:/app/coverage
|
|
|
|
backend:
|
|
# name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there
|
|
image: ghcr.io/ocelot-social-community/ocelot-social/backend:test
|
|
build:
|
|
target: test
|
|
environment:
|
|
- NODE_ENV="test"
|
|
volumes:
|
|
- ./coverage:/app/coverage
|
|
|
|
maintenance:
|
|
# name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there
|
|
image: ghcr.io/ocelot-social-community/ocelot-social/maintenance:test
|
|
|
|
neo4j:
|
|
# name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there
|
|
image: ghcr.io/ocelot-social-community/ocelot-social/neo4j-community:test
|
|
#environment:
|
|
# - NEO4J_dbms_connector_bolt_enabled=true
|
|
# - NEO4J_dbms_connector_bolt_tls__level=OPTIONAL
|
|
# - NEO4J_dbms_connector_bolt_listen__address=0.0.0.0:7687
|
|
# - NEO4J_auth=none
|
|
# - NEO4J_dbms_connectors_default__listen__address=0.0.0.0
|
|
# - NEO4J_dbms_connector_http_listen__address=0.0.0.0:7474
|
|
# - NEO4J_dbms_connector_https_listen__address=0.0.0.0:7473
|
|
|
|
mailserver:
|
|
image: djfarrelly/maildev
|
|
ports:
|
|
- 1080:80
|
|
- 25:25
|