thought the i built from source. turns out i left image argument inside. latest=devel.
This commit is contained in:
@@ -4,7 +4,6 @@ services:
|
||||
|
||||
erigon-bsc:
|
||||
image: thorax/erigon:latest
|
||||
build: erigon-bsc/
|
||||
command: erigon --chain bsc --metrics --metrics.addr=0.0.0.0 --metrics.port=6060 --private.api.addr=0.0.0.0:9090 --pprof --pprof.addr=0.0.0.0 --pprof.port=6061
|
||||
volumes:
|
||||
- erigon-bsc-volume:/home/erigon/.local/share/erigon
|
||||
|
||||
@@ -1,37 +0,0 @@
|
||||
# syntax=docker/dockerfile:1
|
||||
FROM docker.io/library/golang:1.18-alpine3.14 AS builder
|
||||
|
||||
RUN apk --no-cache add make gcc g++ linux-headers git bash ca-certificates libgcc libstdc++
|
||||
|
||||
WORKDIR /app
|
||||
RUN git clone --recurse-submodules -j8 https://github.com/ledgerwatch/erigon.git .
|
||||
|
||||
# expect that host run `git submodule update --init`
|
||||
RUN make erigon rpcdaemon integration sentry hack db-tools
|
||||
|
||||
FROM docker.io/library/alpine:3.14
|
||||
|
||||
RUN apk add --no-cache ca-certificates libgcc libstdc++ tzdata
|
||||
COPY --from=builder /app/build/bin/* /usr/local/bin/
|
||||
|
||||
RUN adduser -H -u 1000 -g 1000 -D erigon
|
||||
RUN mkdir -p /home/erigon
|
||||
RUN mkdir -p /home/erigon/.local/share/erigon
|
||||
RUN chown -R erigon:erigon /home/erigon
|
||||
|
||||
USER erigon
|
||||
|
||||
EXPOSE 8545 8546 30303 30303/udp 30304 30304/udp 8080 9090 6060
|
||||
|
||||
# https://github.com/opencontainers/image-spec/blob/main/annotations.md
|
||||
ARG BUILD_DATE
|
||||
ARG VCS_REF
|
||||
LABEL org.label-schema.build-date=$BUILD_DATE \
|
||||
org.label-schema.name="Erigon" \
|
||||
org.label-schema.description="Erigon Ethereum Client" \
|
||||
org.label-schema.url="https://torquem.ch" \
|
||||
org.label-schema.vcs-ref=$VCS_REF \
|
||||
org.label-schema.vcs-url="https://github.com/ledgerwatch/erigon.git" \
|
||||
org.label-schema.vendor="Torquem" \
|
||||
org.label-schema.version=$VERSION \
|
||||
org.label-schema.schema-version="1.0"
|
||||
Reference in New Issue
Block a user