Skip to content

Commit

Permalink
Merge pull request #1210 from sschuberth/dockerfile-doc-fix
Browse files Browse the repository at this point in the history
Fix docs to say that the `Dockerfile` is created, not the image
  • Loading branch information
bmuschko committed Dec 21, 2023
2 parents 38ee337 + 24d2f4a commit 57521d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/docs/asciidoc/user-guide/23-tasks.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The plugin provides a set of tasks for your project and preconfigures them with
|=======
|Task name |Depends On |Type |Description
|`dockerSyncBuildContext` |`classes` |TaskProvider<{uri-gradle-docs}/javadoc/org/gradle/api/tasks/Sync.html[Sync]> |Copies the application files to a temporary directory for image creation.
|`dockerCreateDockerfile` |`dockerSyncBuildContext` |TaskProvider<{uri-ghpages}/api/com/bmuschko/gradle/docker/tasks/image/Dockerfile.html[Dockerfile]> |Creates the Docker image for the Java application.
|`dockerCreateDockerfile` |`dockerSyncBuildContext` |TaskProvider<{uri-ghpages}/api/com/bmuschko/gradle/docker/tasks/image/Dockerfile.html[Dockerfile]> |Creates the `Dockerfile` for the Java application.
|`dockerBuildImage` |`dockerCreateDockerfile` |TaskProvider<{uri-ghpages}/api/com/bmuschko/gradle/docker/tasks/image/DockerBuildImage.html[DockerBuildImage]> |Builds the Docker image for the Java application.
|`dockerPushImage` |`dockerBuildImage` |TaskProvider<{uri-ghpages}/api/com/bmuschko/gradle/docker/tasks/image/DockerPushImage.html[DockerPushImage]> |Pushes created Docker image to the repository.
|=======
2 changes: 1 addition & 1 deletion src/docs/asciidoc/user-guide/33-tasks.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The plugin provides a set of tasks for your project and preconfigures them with
|=======
|Task name |Depends On |Type |Description
|`dockerSyncBuildContext` |`classes` |TaskProvider<{uri-gradle-docs}/javadoc/org/gradle/api/tasks/Sync.html[Sync]> |Copies the application files to a temporary directory for image creation.
|`dockerCreateDockerfile` |`dockerSyncBuildContext` |TaskProvider<{uri-ghpages}/api/com/bmuschko/gradle/docker/tasks/image/Dockerfile.html[Dockerfile]> |Creates the Docker image for the Spring Boot application.
|`dockerCreateDockerfile` |`dockerSyncBuildContext` |TaskProvider<{uri-ghpages}/api/com/bmuschko/gradle/docker/tasks/image/Dockerfile.html[Dockerfile]> |Creates the `Dockerfile` for the Spring Boot application.
|`dockerBuildImage` |`dockerCreateDockerfile` |TaskProvider<{uri-ghpages}/api/com/bmuschko/gradle/docker/tasks/image/DockerBuildImage.html[DockerBuildImage]> |Builds the Docker image for the Spring Boot application.
|`dockerPushImage` |`dockerBuildImage` |TaskProvider<{uri-ghpages}/api/com/bmuschko/gradle/docker/tasks/image/DockerPushImage.html[DockerPushImage]> |Pushes created Docker image to the repository.
|=======

0 comments on commit 57521d3

Please sign in to comment.