diff --git a/monero-wallet-rpc/Dockerfile b/monero-wallet-rpc/Dockerfile index f186945..981b21b 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.2} +ENV VERSION=${VRS:-v0.18.4.3} 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 42379db..dd4274f 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.2 . +docker build -t monero-wallet-rpc:0.18.4.3 . ``` Available `build-arg`: -- **VRS**: monero-wallet-rpc version to install, default _0.18.4.2_ +- **VRS**: monero-wallet-rpc version to install, default _0.18.4.3_ 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.2 + monero-wallet-rpc:0.18.4.3 ``` 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.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.4.3 /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.2 + image: ghcr.io/farcaster-project/containers/monerod:0.18.4.3 env: NETWORK: regtest OFFLINE: --offline DIFFICULTY: 1 monero-wallet-rpc: - image: ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.2 + image: ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.3 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.2 -docker pull ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.2 +docker pull ghcr.io/farcaster-project/containers/monerod:0.18.4.3 +docker pull ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.3 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.2 + ghcr.io/farcaster-project/containers/monerod:0.18.4.3 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.2 + ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.3 docker start monerod docker start monero-wallet-rpc diff --git a/monero-wallet-rpc/SHASUM b/monero-wallet-rpc/SHASUM index e935b0d..70d4a0e 100644 --- a/monero-wallet-rpc/SHASUM +++ b/monero-wallet-rpc/SHASUM @@ -1 +1 @@ -41d023f2357244ea43ee0a74796f5705ce75ce7373a5865d4959fefa13ecab06 \ No newline at end of file +3a7b36ae4da831a4e9913e0a891728f4c43cd320f9b136cdb6686b1d0a33fafa \ No newline at end of file diff --git a/monero-wallet-rpc/VERSION b/monero-wallet-rpc/VERSION index 7807ac1..525f4ac 100644 --- a/monero-wallet-rpc/VERSION +++ b/monero-wallet-rpc/VERSION @@ -1 +1 @@ -0.18.4.2 \ No newline at end of file +0.18.4.3 \ No newline at end of file diff --git a/monerod/Dockerfile b/monerod/Dockerfile index 6c31ed0..80df621 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.2} +ENV VERSION=${VRS:-v0.18.4.3} RUN echo $VERSION RUN apt update && apt install -y wget tar bzip2 diff --git a/monerod/README.md b/monerod/README.md index 67f5e22..ebbb9d9 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.2 . +docker build -t monerod:0.18.4.3 . ``` Available `build-arg`: -- **VRS**: monerod version to install, default _0.18.4.2_ +- **VRS**: monerod version to install, default _0.18.4.3_ 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.2 + monerod:0.18.4.3 ``` 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.2 + image: ghcr.io/farcaster-project/containers/monerod:0.18.4.3 env: NETWORK: regtest OFFLINE: --offline @@ -58,13 +58,13 @@ services: ## Standalone usage ``` -docker pull ghcr.io/farcaster-project/containers/monerod:0.18.4.2 +docker pull ghcr.io/farcaster-project/containers/monerod:0.18.4.3 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.2 + ghcr.io/farcaster-project/containers/monerod:0.18.4.3 docker start monerod diff --git a/monerod/SHASUM b/monerod/SHASUM index e935b0d..70d4a0e 100644 --- a/monerod/SHASUM +++ b/monerod/SHASUM @@ -1 +1 @@ -41d023f2357244ea43ee0a74796f5705ce75ce7373a5865d4959fefa13ecab06 \ No newline at end of file +3a7b36ae4da831a4e9913e0a891728f4c43cd320f9b136cdb6686b1d0a33fafa \ No newline at end of file diff --git a/monerod/VERSION b/monerod/VERSION index 7807ac1..525f4ac 100644 --- a/monerod/VERSION +++ b/monerod/VERSION @@ -1 +1 @@ -0.18.4.2 \ No newline at end of file +0.18.4.3 \ No newline at end of file