Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release monero 0.18.2.2 container images #74

Merged
merged 1 commit into from
Sep 15, 2023
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 monero-wallet-rpc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM debian:bullseye-slim AS install

ARG VRS
ENV VERSION=${VRS:-v0.18.1.2}
ENV VERSION=${VRS:-v0.18.2.2}
RUN echo $VERSION

RUN apt update && apt install -y wget tar bzip2
Expand Down
20 changes: 10 additions & 10 deletions monero-wallet-rpc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
Build the default monero-wallet-rpc image with

```
docker build -t monero-wallet-rpc:0.18.1.2 .
docker build -t monero-wallet-rpc:0.18.2.2 .
```

Available `build-arg`:

- **VRS**: monero-wallet-rpc version to install, default _0.18.1.2_
- **VRS**: monero-wallet-rpc version to install, default _0.18.2.2_

Create a container with exposed ports for RPC connections (you need a `monerod` container created to link with)

Expand All @@ -18,7 +18,7 @@ docker create -p 18083:18083\
--env MONERO_DAEMON_ADDRESS=monerod:18081\
--env WALLET_RPC_PORT=18083\
--link monerod\
monero-wallet-rpc:0.18.1.2
monero-wallet-rpc:0.18.2.2
```

Available environment variables:
Expand All @@ -32,20 +32,20 @@ Available listening container ports:

Wallet RPC is binded to `0.0.0.0` and the chosen **WALLET_RPC_PORT**, you probably want to expose the chosen port outside the container with `-p [hostPort]:[containerPort]`.

The `monero-wallet-cli` binary is also installed, you can use `docker run -it ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.1.2 /bin/bash` to use it stand alone or `docker exec -it {monero-wallet-rcp} /bin/bash` to enter a running container.
The `monero-wallet-cli` binary is also installed, you can use `docker run -it ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.2.2 /bin/bash` to use it stand alone or `docker exec -it {monero-wallet-rcp} /bin/bash` to enter a running container.

## GitHub Action usage

```yaml
services:
monerod:
image: ghcr.io/farcaster-project/containers/monerod:0.18.1.2
image: ghcr.io/farcaster-project/containers/monerod:0.18.2.2
env:
NETWORK: regtest
OFFLINE: --offline
DIFFICULTY: 1
monero-wallet-rpc:
image: ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.1.2
image: ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.2.2
env:
MONERO_DAEMON_ADDRESS: monerod:18081
WALLET_RPC_PORT: 18083
Expand All @@ -54,22 +54,22 @@ services:
## Standalone usage with [`containers/monerod`](https://github.com/farcaster-project/containers/tree/main/monerod) image

```
docker pull ghcr.io/farcaster-project/containers/monerod:0.18.1.2
docker pull ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.1.2
docker pull ghcr.io/farcaster-project/containers/monerod:0.18.2.2
docker pull ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.2.2

docker create -p 18080:18080 -p 18081:18081 -p 18082:18082\
--name monerod\
--env NETWORK=regtest\
--env OFFLINE=--offline\
--env DIFFICULTY=1\
ghcr.io/farcaster-project/containers/monerod:0.18.1.2
ghcr.io/farcaster-project/containers/monerod:0.18.2.2

docker create -p 18083:18083\
--name monero-wallet-rpc\
--link monerod\
--env MONERO_DAEMON_ADDRESS=monerod:18081\
--env WALLET_RPC_PORT=18083\
ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.1.2
ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.2.2

docker start monerod
docker start monero-wallet-rpc
Expand Down
2 changes: 1 addition & 1 deletion monero-wallet-rpc/SHASUM
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7d51e7072351f65d0c7909e745827cfd3b00abe5e7c4cc4c104a3c9b526da07e
186800de18f67cca8475ce392168aabeb5709a8f8058b0f7919d7c693786d56b
2 changes: 1 addition & 1 deletion monero-wallet-rpc/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.18.1.2
0.18.2.2
2 changes: 1 addition & 1 deletion monerod/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM debian:bullseye-slim AS install

ARG VRS
ENV VERSION=${VRS:-v0.18.1.2}
ENV VERSION=${VRS:-v0.18.2.2}
RUN echo $VERSION

RUN apt update && apt install -y wget tar bzip2
Expand Down
12 changes: 6 additions & 6 deletions monerod/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
Build the default monerod image with

```
docker build -t monerod:0.18.1.2 .
docker build -t monerod:0.18.2.2 .
```

Available `build-arg`:

- **VRS**: monerod version to install, default _0.18.1.2_
- **VRS**: monerod version to install, default _0.18.2.2_

Create a container with

Expand All @@ -18,7 +18,7 @@ docker create -p 18080:18080 -p 18081:18081 -p 18082:18082\
--env NETWORK=regtest\
--env OFFLINE=--offline\
--env DIFFICULTY=1\
monerod:0.18.1.2
monerod:0.18.2.2
```

Available environment variables:
Expand All @@ -44,7 +44,7 @@ RPC and Zero MQ are binded to `0.0.0.0` to accept any connections, you probably
```yaml
services:
monerod:
image: ghcr.io/farcaster-project/containers/monerod:0.18.1.2
image: ghcr.io/farcaster-project/containers/monerod:0.18.2.2
env:
NETWORK: regtest
OFFLINE: --offline
Expand All @@ -58,13 +58,13 @@ services:
## Standalone usage

```
docker pull ghcr.io/farcaster-project/containers/monerod:0.18.1.2
docker pull ghcr.io/farcaster-project/containers/monerod:0.18.2.2
docker create -p 18080:18080 -p 18081:18081 -p 18082:18082\
--name monerod\
--env NETWORK=regtest\
--env OFFLINE=--offline\
--env DIFFICULTY=1\
ghcr.io/farcaster-project/containers/monerod:0.18.1.2
ghcr.io/farcaster-project/containers/monerod:0.18.2.2

docker start monerod

Expand Down
2 changes: 1 addition & 1 deletion monerod/SHASUM
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7d51e7072351f65d0c7909e745827cfd3b00abe5e7c4cc4c104a3c9b526da07e
186800de18f67cca8475ce392168aabeb5709a8f8058b0f7919d7c693786d56b
2 changes: 1 addition & 1 deletion monerod/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.18.1.2
0.18.2.2