Files
graph-mesamis/compose.yml
2025-10-22 07:45:11 +02:00

44 lines
1.0 KiB
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
user: "1000:1000"
ports:
- 7474:7474
- 7687:7687 # bolt protocol
volumes:
- neo4j_data:/data
- neo4j_logs:/logs
- ./import:/var/lib/neo4j/import
environment:
NEO4J_server.https.enabled: "false"
NEO4J_AUTH: neo4j/${NEO4J_PASSWORD:-!ChangeMe!}
NEO4J_ACCEPT_LICENSE_AGREEMENT: eval
NEO4J_PLUGINS: "[\"graph-data-science\", \"bloom\", \"apoc-extended\"]"
#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: