Skip to content
This repository was archived by the owner on Feb 23, 2023. It is now read-only.

Corrected incorrect docker image name that is generated under asciidoc #1225

Merged
merged 1 commit into from
Nov 8, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ To run the application, you can use `docker` the usual way as shown in the follo

[source,bash]
----
$ docker run --rm -p 8080:8080 rest-service:0.0.1-SNAPSHOT
$ docker run --rm -p 8080:8080 rest-service-complete:0.0.1-SNAPSHOT
----


Expand All @@ -341,7 +341,7 @@ If you prefer `docker-compose`, you can write a `docker-compose.yml` at the root
version: '3.1'
services:
rest-service:
image: rest-service:0.0.1-SNAPSHOT
image: rest-service-complete:0.0.1-SNAPSHOT
ports:
- "8080:8080"
----
Expand Down