Skip to content

Commit

Permalink
Fix Docker image reference in tutorials (#12479)
Browse files Browse the repository at this point in the history
  • Loading branch information
cnunciato authored Aug 9, 2024
1 parent 49f0b30 commit 274f0b2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion content/tutorials/importing/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ resource "docker_image" "frontend" {
}
resource "docker_image" "mongo" {
name = "pulumi/tutorial-pulumi-fundamentals-database-local:latest"
name = "pulumi/tutorial-pulumi-fundamentals-database:latest"
keep_locally = false
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const frontend = new docker.RemoteImage(`${frontendImageName}Image`, {

// Pull the MongoDB image
const mongoImage = new docker.RemoteImage("mongoImage", {
name: "pulumi/tutorial-pulumi-fundamentals-database-local:latest",
name: "pulumi/tutorial-pulumi-fundamentals-database:latest",
});
```

Expand Down Expand Up @@ -115,7 +115,7 @@ frontend = docker.RemoteImage(

# Pull the MongoDB image
mongo_image = docker.RemoteImage(
"mongo_image", name="pulumi/tutorial-pulumi-fundamentals-database-local:latest"
"mongo_image", name="pulumi/tutorial-pulumi-fundamentals-database:latest"
)
```

Expand Down Expand Up @@ -439,7 +439,7 @@ const frontend = new docker.RemoteImage(`${frontendImageName}Image`, {

// Pull the MongoDB image
const mongoImage = new docker.RemoteImage("mongoImage", {
name: "pulumi/tutorial-pulumi-fundamentals-database-local:latest",
name: "pulumi/tutorial-pulumi-fundamentals-database:latest",
});

// Create a Docker network
Expand Down Expand Up @@ -546,7 +546,7 @@ frontend = docker.RemoteImage(

# Pull the MongoDB image
mongo_image = docker.RemoteImage(
"mongo_image", name="pulumi/tutorial-pulumi-fundamentals-database-local:latest"
"mongo_image", name="pulumi/tutorial-pulumi-fundamentals-database:latest"
)

# Create a Docker network
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ const frontend = new docker.RemoteImage(`${frontendImageName}Image`, {

// Pull the MongoDB image
const mongoImage = new docker.RemoteImage("mongoImage", {
name: "pulumi/tutorial-pulumi-fundamentals-database-local:latest",
name: "pulumi/tutorial-pulumi-fundamentals-database:latest",
});
```

Expand All @@ -398,7 +398,7 @@ frontend = docker.RemoteImage(

# Pull the MongoDB image
mongo_image = docker.RemoteImage(
"mongo_image", name="pulumi/tutorial-pulumi-fundamentals-database-local:latest"
"mongo_image", name="pulumi/tutorial-pulumi-fundamentals-database:latest"
)
```

Expand All @@ -421,7 +421,7 @@ ctx.Export("frontendDockerImage", frontendImage.Name)

// Pull the MongoDB image
mongoImage, err := docker.NewRemoteImage(ctx, "mongo-image", &docker.RemoteImageArgs{
Name: pulumi.String("pulumi/tutorial-pulumi-fundamentals-database-local:latest"),
Name: pulumi.String("pulumi/tutorial-pulumi-fundamentals-database:latest"),
})
if err != nil {
return err
Expand All @@ -447,7 +447,7 @@ final var frontendImage = new RemoteImage(
final var mongoImage = new RemoteImage(
"mongoImage",
RemoteImageArgs.builder()
.name("pulumi/tutorial-pulumi-fundamentals-database-local:latest")
.name("pulumi/tutorial-pulumi-fundamentals-database:latest")
.build()
);
```
Expand All @@ -467,7 +467,7 @@ frontend-image:
mongo-image:
type: docker:index:RemoteImage
properties:
name: pulumi/tutorial-pulumi-fundamentals-database-local:latest
name: pulumi/tutorial-pulumi-fundamentals-database:latest
```
{{% /choosable %}}
Expand Down Expand Up @@ -500,7 +500,7 @@ const frontend = new docker.RemoteImage(`${frontendImageName}Image`, {

// Pull the MongoDB image
const mongoImage = new docker.RemoteImage("mongoImage", {
name: "pulumi/tutorial-pulumi-fundamentals-database-local:latest",
name: "pulumi/tutorial-pulumi-fundamentals-database:latest",
});
```

Expand Down Expand Up @@ -530,7 +530,7 @@ frontend = docker.RemoteImage(

# Pull the MongoDB image
mongo_image = docker.RemoteImage(
"mongo_image", name="pulumi/tutorial-pulumi-fundamentals-database-local:latest"
"mongo_image", name="pulumi/tutorial-pulumi-fundamentals-database:latest"
)
```

Expand Down

0 comments on commit 274f0b2

Please sign in to comment.