diff --git a/monero-wallet-rpc/Dockerfile b/monero-wallet-rpc/Dockerfile index 340e2d5..f186945 100644 --- a/monero-wallet-rpc/Dockerfile +++ b/monero-wallet-rpc/Dockerfile @@ -1,7 +1,7 @@ FROM debian:bookworm-slim AS install ARG VRS -ENV VERSION=${VRS:-v0.18.4.1} +ENV VERSION=${VRS:-v0.18.4.2} RUN echo $VERSION RUN apt update && apt install -y wget tar bzip2 diff --git a/monero-wallet-rpc/README.md b/monero-wallet-rpc/README.md index 7d75e2a..42379db 100644 --- a/monero-wallet-rpc/README.md +++ b/monero-wallet-rpc/README.md @@ -3,12 +3,12 @@ Build the default monero-wallet-rpc image with ``` -docker build -t monero-wallet-rpc:0.18.4.1 . +docker build -t monero-wallet-rpc:0.18.4.2 . ``` Available `build-arg`: -- **VRS**: monero-wallet-rpc version to install, default _0.18.4.1_ +- **VRS**: monero-wallet-rpc version to install, default _0.18.4.2_ Create a container with exposed ports for RPC connections (you need a `monerod` container created to link with) @@ -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.4.1 + monero-wallet-rpc:0.18.4.2 ``` Available environment variables: @@ -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.4.1 /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.4.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.4.1 + image: ghcr.io/farcaster-project/containers/monerod:0.18.4.2 env: NETWORK: regtest OFFLINE: --offline DIFFICULTY: 1 monero-wallet-rpc: - image: ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.1 + image: ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.2 env: MONERO_DAEMON_ADDRESS: monerod:18081 WALLET_RPC_PORT: 18083 @@ -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.4.1 -docker pull ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.1 +docker pull ghcr.io/farcaster-project/containers/monerod:0.18.4.2 +docker pull ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.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.4.1 + ghcr.io/farcaster-project/containers/monerod:0.18.4.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.4.1 + ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.2 docker start monerod docker start monero-wallet-rpc diff --git a/monero-wallet-rpc/SHASUM b/monero-wallet-rpc/SHASUM index 689968c..e935b0d 100644 --- a/monero-wallet-rpc/SHASUM +++ b/monero-wallet-rpc/SHASUM @@ -1 +1 @@ -702ccb799c24160c0c76676d7a5b21a7e3432be47294d20e0a75451592f591b2 \ No newline at end of file +41d023f2357244ea43ee0a74796f5705ce75ce7373a5865d4959fefa13ecab06 \ No newline at end of file diff --git a/monero-wallet-rpc/VERSION b/monero-wallet-rpc/VERSION index f2db263..7807ac1 100644 --- a/monero-wallet-rpc/VERSION +++ b/monero-wallet-rpc/VERSION @@ -1 +1 @@ -0.18.4.1 \ No newline at end of file +0.18.4.2 \ No newline at end of file diff --git a/monerod/Dockerfile b/monerod/Dockerfile index 048ac61..6c31ed0 100644 --- a/monerod/Dockerfile +++ b/monerod/Dockerfile @@ -1,7 +1,7 @@ FROM debian:bookworm-slim AS install ARG VRS -ENV VERSION=${VRS:-v0.18.4.1} +ENV VERSION=${VRS:-v0.18.4.2} RUN echo $VERSION RUN apt update && apt install -y wget tar bzip2 diff --git a/monerod/README.md b/monerod/README.md index cb43a84..67f5e22 100644 --- a/monerod/README.md +++ b/monerod/README.md @@ -3,12 +3,12 @@ Build the default monerod image with ``` -docker build -t monerod:0.18.4.1 . +docker build -t monerod:0.18.4.2 . ``` Available `build-arg`: -- **VRS**: monerod version to install, default _0.18.4.1_ +- **VRS**: monerod version to install, default _0.18.4.2_ Create a container with @@ -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.4.1 + monerod:0.18.4.2 ``` Available environment variables: @@ -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.4.1 + image: ghcr.io/farcaster-project/containers/monerod:0.18.4.2 env: NETWORK: regtest OFFLINE: --offline @@ -58,13 +58,13 @@ services: ## Standalone usage ``` -docker pull ghcr.io/farcaster-project/containers/monerod:0.18.4.1 +docker pull ghcr.io/farcaster-project/containers/monerod:0.18.4.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.4.1 + ghcr.io/farcaster-project/containers/monerod:0.18.4.2 docker start monerod diff --git a/monerod/SHASUM b/monerod/SHASUM index 689968c..e935b0d 100644 --- a/monerod/SHASUM +++ b/monerod/SHASUM @@ -1 +1 @@ -702ccb799c24160c0c76676d7a5b21a7e3432be47294d20e0a75451592f591b2 \ No newline at end of file +41d023f2357244ea43ee0a74796f5705ce75ce7373a5865d4959fefa13ecab06 \ No newline at end of file diff --git a/monerod/VERSION b/monerod/VERSION index f2db263..7807ac1 100644 --- a/monerod/VERSION +++ b/monerod/VERSION @@ -1 +1 @@ -0.18.4.1 \ No newline at end of file +0.18.4.2 \ No newline at end of file