Skip to content

Commit 12e858f

Browse files
authored
Merge pull request #10 from refring/revert-9-v0.18.4.4
Revert "Updated to 0.18.4.4"
2 parents 66a48be + 9e36b17 commit 12e858f

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
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:bullseye-slim AS install
22

33
ARG VRS
4-
ENV VERSION=${VRS:-v0.18.4.4}
4+
ENV VERSION=${VRS:-v0.18.4.2}
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.4 .
6+
docker build -t monero-wallet-rpc:0.18.4.2 .
77
```
88

99
Available `build-arg`:
1010

11-
- **VRS**: monero-wallet-rpc version to install, default _0.18.4.4_
11+
- **VRS**: monero-wallet-rpc version to install, default _0.18.4.2_
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.4
21+
monero-wallet-rpc:0.18.4.2
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/refring/monero-containers/monero-wallet-rpc:0.18.4.4 /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/refring/monero-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.
3636

3737
## GitHub Action usage
3838

3939
```yaml
4040
services:
4141
monerod:
42-
image: ghcr.io/refring/monero-containers/monerod:0.18.4.4
42+
image: ghcr.io/refring/monero-containers/monerod:0.18.4.2
4343
env:
4444
NETWORK: regtest
4545
OFFLINE: --offline
4646
DIFFICULTY: 1
4747
monero-wallet-rpc:
48-
image: ghcr.io/refring/monero-containers/monero-wallet-rpc:0.18.4.4
48+
image: ghcr.io/refring/monero-containers/monero-wallet-rpc:0.18.4.2
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/refring/monero-containers/tree/main/monerod) image
5555

5656
```
57-
docker pull ghcr.io/refring/monero-containers/monerod:0.18.4.4
58-
docker pull ghcr.io/refring/monero-containers/monero-wallet-rpc:0.18.4.4
57+
docker pull ghcr.io/refring/monero-containers/monerod:0.18.4.2
58+
docker pull ghcr.io/refring/monero-containers/monero-wallet-rpc:0.18.4.2
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/refring/monero-containers/monerod:0.18.4.4
65+
ghcr.io/refring/monero-containers/monerod:0.18.4.2
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/refring/monero-containers/monero-wallet-rpc:0.18.4.4
72+
ghcr.io/refring/monero-containers/monero-wallet-rpc:0.18.4.2
7373

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

monero-wallet-rpc/SHASUM

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7fe45ee9aade429ccdcfcad93b905ba45da5d3b46d2dc8c6d5afc48bd9e7f108
1+
41d023f2357244ea43ee0a74796f5705ce75ce7373a5865d4959fefa13ecab06

monero-wallet-rpc/VERSION

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

monerod/Dockerfile

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

33
ARG VRS
4-
ENV VERSION=${VRS:-v0.18.4.4}
4+
ENV VERSION=${VRS:-v0.18.4.2}
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.4 .
6+
docker build -t monerod:0.18.4.2 .
77
```
88

99
Available `build-arg`:
1010

11-
- **VRS**: monerod version to install, default _0.18.4.4_
11+
- **VRS**: monerod version to install, default _0.18.4.2_
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.4
21+
monerod:0.18.4.2
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/refring/monero-containers/monerod:0.18.4.4
47+
image: ghcr.io/refring/monero-containers/monerod:0.18.4.2
4848
env:
4949
NETWORK: regtest
5050
OFFLINE: --offline
@@ -58,13 +58,13 @@ services:
5858
## Standalone usage
5959
6060
```
61-
docker pull ghcr.io/refring/monero-containers/monerod:0.18.4.4
61+
docker pull ghcr.io/refring/monero-containers/monerod:0.18.4.2
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/refring/monero-containers/monerod:0.18.4.4
67+
ghcr.io/refring/monero-containers/monerod:0.18.4.2
6868

6969
docker start monerod
7070

monerod/SHASUM

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7fe45ee9aade429ccdcfcad93b905ba45da5d3b46d2dc8c6d5afc48bd9e7f108
1+
41d023f2357244ea43ee0a74796f5705ce75ce7373a5865d4959fefa13ecab06

monerod/VERSION

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

0 commit comments

Comments
 (0)