🚨 AtomicJar is now part of Docker 🐋! Read the blog

Official Module

neo4j
We partner with software vendors to maintain and certify official modules.

Description

Neo4j is a highly scalable open source graph database management system.

Examples

var neo4j = new Neo4jContainer<>(DockerImageName.parse("neo4j:4.4"));
neo4j.start();
neo4jContainer, err := neo4j.RunContainer(ctx,
  testcontainers.WithImage("neo4j:4.4"),
  neo4j.WithAdminPassword("letmein!"),
  neo4j.WithLabsPlugin(neo4j.Apoc),
)
var neo4jContainer = new Neo4jBuilder()
  .WithImage("neo4j:5.4")
  .Build();
await neo4jContainer.StartAsync();
const container = await new Neo4jContainer().start();