Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Docker image. Running:
./mvnw deploy
```

builds all modules and pushes `docker.398ja.xyz/cashu-gateway-rest:${project.version}`.
builds all modules and pushes `docker.398ja.xyz/cashu-gateway-rest` tagged with both the project version and `latest`, so consumers can pull the most recent build without specifying a version.

## Configuration

Expand Down
5 changes: 4 additions & 1 deletion cashu-gateway-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@
<image>eclipse-temurin:21-jre</image>
</from>
<to>
<image>docker.398ja.xyz/cashu-gateway-rest:${project.version}</image>
<image>docker.398ja.xyz/cashu-gateway-rest:latest</image>
<tags>
<tag>${project.version}</tag>
</tags>
</to>
<container>
<ports>
Expand Down
Loading