feat: 增加Neo4j扫描和测试环境

This commit is contained in:
ZacharyZcR
2024-12-23 07:15:25 +08:00
parent fe1b92cc98
commit 40e8f6621d
9 changed files with 189 additions and 10 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM neo4j:4.4
ENV NEO4J_AUTH=neo4j/123456
ENV NEO4J_dbms_security_procedures_unrestricted=apoc.*
ENV NEO4J_dbms_security_auth_enabled=true
EXPOSE 7474 7687
CMD ["neo4j"]
+11
View File
@@ -0,0 +1,11 @@
version: '3'
services:
neo4j:
image: neo4j:4.4
ports:
- "7474:7474"
- "7687:7687"
environment:
- NEO4J_AUTH=neo4j/123456
- NEO4J_dbms_security_auth_enabled=true
container_name: neo4j-weak