mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
47 lines
940 B
YAML
47 lines
940 B
YAML
version: "3.4"
|
|
|
|
services:
|
|
mailserver:
|
|
image: djfarrelly/maildev
|
|
ports:
|
|
- 1080:80
|
|
networks:
|
|
- hc-network
|
|
webapp:
|
|
build:
|
|
context: webapp
|
|
target: build-and-test
|
|
volumes:
|
|
- ./webapp:/nitro-web
|
|
- webapp_node_modules:/nitro-web/node_modules
|
|
command: yarn run dev
|
|
user: root
|
|
backend:
|
|
image: humanconnection/nitro-backend:builder
|
|
build:
|
|
context: backend
|
|
target: builder
|
|
volumes:
|
|
- ./backend:/nitro-backend
|
|
- backend_node_modules:/nitro-backend/node_modules
|
|
- uploads:/nitro-backend/public/uploads
|
|
command: yarn run dev
|
|
environment:
|
|
- SMTP_HOST=mailserver
|
|
- SMTP_PORT=25
|
|
- SMTP_IGNORE_TLS=true
|
|
neo4j:
|
|
environment:
|
|
- NEO4J_AUTH=none
|
|
ports:
|
|
- 7687:7687
|
|
- 7474:7474
|
|
volumes:
|
|
- neo4j-data:/data
|
|
|
|
volumes:
|
|
webapp_node_modules:
|
|
backend_node_modules:
|
|
neo4j-data:
|
|
uploads:
|