Skip to content

Commit dbf03c9

Browse files
committed
disable logfile
1 parent 7ac85ae commit dbf03c9

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM madebytimo/builder AS builder
1+
FROM --platform=$BUILDPLATFORM madebytimo/builder AS builder
22

33
ARG TARGETPLATFORM
44

Readme.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,12 @@ This Container image extends the [base image].
1212

1313
### Environment variables
1414

15-
- `VARIABLE`
16-
- Set to `true` to enable ..., default: ``.
15+
- `BATCH_SIZE`
16+
- How many blocks are processed in a single batch during chain synchronization, default: `10`.
17+
- `PROXY_URL`
18+
- Run network communication through specified proxy.
19+
- `PRUNE_BLOCKCHAIN`
20+
- Remove non-critical blockchain information from the local blockchain.
1721

1822
### Volumes
1923

Version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.0.2
1+
v0.1.0

docker-compose-dev.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ services:
1111
- "./data-local:/media/monerod"
1212
ports:
1313
- "127.0.0.1:18081:18081"
14+
- "127.0.0.1:18082:18082"

files/run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ if [[ "$PRUNE_BLOCKCHAIN" == "true" ]]; then
1212
fi
1313

1414
/opt/monero/monerod "${ADDITIONAL_ARGUMENTS[@]}" --block-sync-size "$BATCH_SIZE" \
15-
--confirm-external-bind --data-dir /media/monerod --in-peers 100 --non-interactive \
16-
--restricted-rpc --rpc-bind-ip 0.0.0.0 "$@"
15+
--confirm-external-bind --data-dir /media/monerod --in-peers 100 --log-file /dev/null \
16+
--non-interactive --restricted-rpc --rpc-bind-ip 0.0.0.0 "$@"

0 commit comments

Comments
 (0)