Files
graph-mesamis/compose.yml
2025-10-21 17:09:32 +02:00

42 lines
980 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
services:
# ----------------------------------------------------------------------
# Graphes
#
# ----------------------------------------------------------------------
# Neo4J
# Des graphes ultra-rapides, à léchelle du pétaoctet
# https://neo4j.com/
neo4j:
image: neo4j:5.26.12-enterprise
ports:
- 7474:7474
- 7687:7687 # bolt protocol
volumes:
- neo4j_data:/data
- neo4j_logs:/logs
environment:
NEO4J_server.https.enabled: "false"
NEO4J_AUTH: neo4j/${NEO4J_PASSWORD:-!ChangeMe!}
NEO4J_ACCEPT_LICENSE_AGREEMENT: eval
NEO4J_PLUGINS: "[\"graph-data-science\", \"bloom\"]"
#networks:
# - caddy_net
#labels:
# caddy: neo4j.localhost
# caddy.reverse_proxy: "{{upstreams 7474}}"
# caddy.tls: internal
app:
image: node:25-alpine
working_dir: /app
volumes:
- .:/app
ports:
- "3000:3000"
command: npm run dev
volumes:
neo4j_data:
neo4j_logs: