Raspberry Pi (ARM) docker images now on available on Docker Hub! #939
jha749
started this conversation in
Show and tell
Replies: 2 comments
-
You are one step in front of me. |
Beta Was this translation helpful? Give feedback.
0 replies
-
int64_t GetTimeMicros(): Assertion `now > 0' failed |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
this is a copy of my post on Reddit here, I welcome feedback both here and on reddit!
Hi all,
For everyone running or wanting to run a Defichain node on a Raspberry Pi, ARM 32-bit docker images can now be found directly in Docker Hub. New releases of Defichain are automatically built and pushed to DockerHub (with a max delay of 1 day). I'm running this myself on a Raspberry Pi4 (have been running a Pi node for over 2 months now). Having pre-built images available saves everyone wanting to run a Pi node a lot of hassle and time on compiling!
If you want to try it out, you can find the images here: https://hub.docker.com/r/jha749/defichain/tags
To run it, you can use the official DefiChain instructions on running a docker node here. Instead of pulling from defi/defichain you should pull from jha749/defichain, e.g.
docker pull jha749/defichain
.I would welcome feedback!
Some notes:
-maxmempool=64 -dbcache=128
. To make docker auto restart when the node somehow exits with an error, I use--restart on-failure
in thedocker run
command (orrestart: on-failure
when using docker-compose).Beta Was this translation helpful? Give feedback.
All reactions