Files
bdd-graph/neo4j/compose.yml
2025-10-28 20:32:12 +01:00

31 lines
816 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:
# ----------------------------------------------------------------------
# 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}
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
volumes:
neo4j_data:
neo4j_logs: