| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This is the base image for lncm/bitcoind Docker images that rely on Berkeleydb version db-4.8.30.NC. This stage is separated from the main bitcoind build process for two reasons:
Images here are built for three architectures: amd64, arm32v7 , and aarch64 (aka arm64v8). The latter two are built using qemu emulation. For details see here.
Pulling this image directly is only useful if you know exactly what you need it for, can be achieved with:
docker pull lncm/berkeleydb:v4.8.30.NCNOTE: architecture is chosen automatically based on the CPU of the Docker host.
To manually specify the architecture, use one of the commands below.
docker pull lncm/berkeleydb:v4.8.30.NC-amd64
docker pull lncm/berkeleydb:v4.8.30.NC-arm32v7
docker pull lncm/berkeleydb:v4.8.30.NC-arm64v8To build bitcoind w/o the need to rebuild Berkeleydb, you can do:
# Start new stage to build _something_
FROM alpine AS something
# Copy all BDB relevant files to your stage
COPY --from=lncm/berkeleydb:v4.8.30.NC /opt /opt
# …
# continue with your instructions here | Back | FazBrowse Home | New Git URL |