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
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,16 @@ Artifacts are published to a Reposilite server. Add the repository to your Maven
- A valid Lightning address (for test runs)

## Docker
Build and publish the `phoenixd-rest` container image with the Jib Maven plugin:
Build and publish the `phoenixd-rest` and `phoenixd-mock` container images with the Jib Maven plugin:

```bash
./mvnw deploy -pl phoenixd-rest -am
./mvnw deploy -pl phoenixd-mock -am
```

This pushes `docker.398ja.xyz/phoenixd-rest` to the registry. See [Docker](docs/how-to/docker.md) for details.
Images are uploaded to `docker.398ja.xyz/phoenixd-rest` and `docker.398ja.xyz/phoenixd-mock` and tagged with both the project
version and `latest`, allowing consumers to pull the most recent build without specifying a version. See
[Docker](docs/how-to/docker.md) for details.

## Documentation
- Reference: [phoenixd REST API](https://phoenix.acinq.co/server/api)
Expand Down
1 change: 1 addition & 0 deletions phoenixd-mock/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
<image>docker.398ja.xyz/phoenixd-mock</image>
<tags>
<tag>${project.version}</tag>
<tag>latest</tag>
</tags>
</to>
<containerizingMode>packaged</containerizingMode>
Expand Down
1 change: 1 addition & 0 deletions phoenixd-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
<image>docker.398ja.xyz/phoenixd-rest</image>
<tags>
<tag>${project.version}</tag>
<tag>latest</tag>
</tags>
</to>
<containerizingMode>packaged</containerizingMode>
Expand Down
Loading