mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
47 lines
1.0 KiB
YAML
47 lines
1.0 KiB
YAML
services:
|
|
|
|
webapp:
|
|
image: ghcr.io/ocelot-social-community/ocelot-social/webapp:local-development
|
|
build:
|
|
target: development
|
|
environment:
|
|
- NODE_ENV="development"
|
|
# - DEBUG=true
|
|
- NUXT_BUILD=/tmp/nuxt # avoid file permission issues when `rm -rf .nuxt/`
|
|
volumes:
|
|
- ./webapp:/app
|
|
|
|
frontend:
|
|
image: ghcr.io/ocelot-social-community/ocelot-social/frontend:local-development
|
|
build:
|
|
target: development
|
|
environment:
|
|
- NODE_ENV=development
|
|
ports:
|
|
# port required for npm run dev
|
|
- 24678:24678
|
|
volumes:
|
|
- ./frontend:/app
|
|
|
|
backend:
|
|
image: ghcr.io/ocelot-social-community/ocelot-social/backend:local-development
|
|
build:
|
|
target: development
|
|
environment:
|
|
- NODE_ENV="development"
|
|
- DEBUG=true
|
|
volumes:
|
|
- ./backend:/app
|
|
|
|
neo4j:
|
|
ports:
|
|
# Also expose the neo4j query browser
|
|
- 7474:7474
|
|
|
|
mailserver:
|
|
image: maildev/maildev
|
|
container_name: mailserver
|
|
ports:
|
|
- 1080:1080
|
|
- 1025:1025
|