Skip to content

Commit 161aadf

Browse files
silverpillsilverpill
andauthored
Monero v0.18.4.3 (#81)
Co-authored-by: silverpill <silverpill@firemail.cc>
1 parent 6516730 commit 161aadf

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

monero-wallet-rpc/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:bookworm-slim AS install
22

33
ARG VRS
4-
ENV VERSION=${VRS:-v0.18.4.2}
4+
ENV VERSION=${VRS:-v0.18.4.3}
55
RUN echo $VERSION
66

77
RUN apt update && apt install -y wget tar bzip2

monero-wallet-rpc/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
Build the default monero-wallet-rpc image with
44

55
```
6-
docker build -t monero-wallet-rpc:0.18.4.2 .
6+
docker build -t monero-wallet-rpc:0.18.4.3 .
77
```
88

99
Available `build-arg`:
1010

11-
- **VRS**: monero-wallet-rpc version to install, default _0.18.4.2_
11+
- **VRS**: monero-wallet-rpc version to install, default _0.18.4.3_
1212

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

@@ -18,7 +18,7 @@ docker create -p 18083:18083\
1818
--env MONERO_DAEMON_ADDRESS=monerod:18081\
1919
--env WALLET_RPC_PORT=18083\
2020
--link monerod\
21-
monero-wallet-rpc:0.18.4.2
21+
monero-wallet-rpc:0.18.4.3
2222
```
2323

2424
Available environment variables:
@@ -32,20 +32,20 @@ Available listening container ports:
3232

3333
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]`.
3434

35-
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.
35+
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.
3636

3737
## GitHub Action usage
3838

3939
```yaml
4040
services:
4141
monerod:
42-
image: ghcr.io/farcaster-project/containers/monerod:0.18.4.2
42+
image: ghcr.io/farcaster-project/containers/monerod:0.18.4.3
4343
env:
4444
NETWORK: regtest
4545
OFFLINE: --offline
4646
DIFFICULTY: 1
4747
monero-wallet-rpc:
48-
image: ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.2
48+
image: ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.3
4949
env:
5050
MONERO_DAEMON_ADDRESS: monerod:18081
5151
WALLET_RPC_PORT: 18083
@@ -54,22 +54,22 @@ services:
5454
## Standalone usage with [`containers/monerod`](https://github.com/farcaster-project/containers/tree/main/monerod) image
5555

5656
```
57-
docker pull ghcr.io/farcaster-project/containers/monerod:0.18.4.2
58-
docker pull ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.2
57+
docker pull ghcr.io/farcaster-project/containers/monerod:0.18.4.3
58+
docker pull ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.3
5959

6060
docker create -p 18080:18080 -p 18081:18081 -p 18082:18082\
6161
--name monerod\
6262
--env NETWORK=regtest\
6363
--env OFFLINE=--offline\
6464
--env DIFFICULTY=1\
65-
ghcr.io/farcaster-project/containers/monerod:0.18.4.2
65+
ghcr.io/farcaster-project/containers/monerod:0.18.4.3
6666

6767
docker create -p 18083:18083\
6868
--name monero-wallet-rpc\
6969
--link monerod\
7070
--env MONERO_DAEMON_ADDRESS=monerod:18081\
7171
--env WALLET_RPC_PORT=18083\
72-
ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.2
72+
ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.4.3
7373

7474
docker start monerod
7575
docker start monero-wallet-rpc

monero-wallet-rpc/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.18.4.2
1+
0.18.4.3

monerod/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:bookworm-slim AS install
22

33
ARG VRS
4-
ENV VERSION=${VRS:-v0.18.4.2}
4+
ENV VERSION=${VRS:-v0.18.4.3}
55
RUN echo $VERSION
66

77
RUN apt update && apt install -y wget tar bzip2

monerod/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
Build the default monerod image with
44

55
```
6-
docker build -t monerod:0.18.4.2 .
6+
docker build -t monerod:0.18.4.3 .
77
```
88

99
Available `build-arg`:
1010

11-
- **VRS**: monerod version to install, default _0.18.4.2_
11+
- **VRS**: monerod version to install, default _0.18.4.3_
1212

1313
Create a container with
1414

@@ -18,7 +18,7 @@ docker create -p 18080:18080 -p 18081:18081 -p 18082:18082\
1818
--env NETWORK=regtest\
1919
--env OFFLINE=--offline\
2020
--env DIFFICULTY=1\
21-
monerod:0.18.4.2
21+
monerod:0.18.4.3
2222
```
2323

2424
Available environment variables:
@@ -44,7 +44,7 @@ RPC and Zero MQ are binded to `0.0.0.0` to accept any connections, you probably
4444
```yaml
4545
services:
4646
monerod:
47-
image: ghcr.io/farcaster-project/containers/monerod:0.18.4.2
47+
image: ghcr.io/farcaster-project/containers/monerod:0.18.4.3
4848
env:
4949
NETWORK: regtest
5050
OFFLINE: --offline
@@ -58,13 +58,13 @@ services:
5858
## Standalone usage
5959
6060
```
61-
docker pull ghcr.io/farcaster-project/containers/monerod:0.18.4.2
61+
docker pull ghcr.io/farcaster-project/containers/monerod:0.18.4.3
6262
docker create -p 18080:18080 -p 18081:18081 -p 18082:18082\
6363
--name monerod\
6464
--env NETWORK=regtest\
6565
--env OFFLINE=--offline\
6666
--env DIFFICULTY=1\
67-
ghcr.io/farcaster-project/containers/monerod:0.18.4.2
67+
ghcr.io/farcaster-project/containers/monerod:0.18.4.3
6868

6969
docker start monerod
7070

monerod/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.18.4.2
1+
0.18.4.3

0 commit comments

Comments
 (0)