Skip to content

Commit

Permalink
Qualify image name
Browse files Browse the repository at this point in the history
  • Loading branch information
fbiville committed Mar 27, 2023
1 parent 76c5f58 commit 313307f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/neo4j/neo4j.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func (c Neo4jContainer) BoltUrl(ctx context.Context) (string, error) {
// StartContainer creates an instance of the Neo4j container type
func StartContainer(ctx context.Context, options ...Option) (*Neo4jContainer, error) {
settings := config{
imageCoordinates: fmt.Sprintf("%s:%s", defaultImageName, defaultTag),
imageCoordinates: fmt.Sprintf("docker.io/%s:%s", defaultImageName, defaultTag),
adminPassword: "password",
}
for _, option := range options {
Expand Down

0 comments on commit 313307f

Please sign in to comment.