Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # neo4j docker-compose <code> version: '3' services: neo4j: image: neo4j:latest network_mode: "bridge" ports: - "27474:7474" - "57687:7687" environment: - NEO4J_AUTH=neo4j/YOUR-PASSWORD #- NEO4J_dbms_security_procedures_unrestricted=apoc.*,algo.* #- NEO4J_dbms_security_procedures_whitelist=apoc.*,algo.* - NEO4J_apoc_import_file_enabled=true - NEO4J_dbms.security.procedures.allowlist=apoc.*,algo.* #- NEO4J_dbms_shell_enabled=true - NEO4JLABS_PLUGINS=["apoc", "graph-data-science"] volumes: - ./volume/data:/data container_name: neo4j </code> open/neo4j-docker-compose.txt Last modified: 2024/10/05 06:15by 127.0.0.1