I love it when capitalization matters, contrary to the docs
This commit is contained in:
parent
477eac7f19
commit
87d749ee4f
|
|
@ -35,13 +35,13 @@ FROM debian:buster-slim AS zebrad-release
|
||||||
|
|
||||||
COPY --from=builder /zebra/target/release/zebrad /
|
COPY --from=builder /zebra/target/release/zebrad /
|
||||||
|
|
||||||
ARG checkpoint_sync=true
|
ARG CHECKPOINT_SYNC=true
|
||||||
ARG network=Mainnet
|
ARG NETWORK=Mainnet
|
||||||
|
|
||||||
RUN printf "[consensus]\n" >> /zebrad.toml
|
RUN printf "[consensus]\n" >> /zebrad.toml
|
||||||
RUN printf "checkpoint_sync = ${checkpoint_sync}\n" >> /zebrad.toml
|
RUN printf "checkpoint_sync = ${CHECKPOINT_SYNC}\n" >> /zebrad.toml
|
||||||
RUN printf "[network]\n" >> /zebrad.toml
|
RUN printf "[network]\n" >> /zebrad.toml
|
||||||
RUN printf "network = '${network}'\n" >> /zebrad.toml
|
RUN printf "network = '${NETWORK}'\n" >> /zebrad.toml
|
||||||
RUN printf "[state]\n" >> /zebrad.toml
|
RUN printf "[state]\n" >> /zebrad.toml
|
||||||
RUN printf "cache_dir = '/zebrad-cache'\n" >> /zebrad.toml
|
RUN printf "cache_dir = '/zebrad-cache'\n" >> /zebrad.toml
|
||||||
RUN printf "memory_cache_bytes = 52428800\n" >> /zebrad.toml
|
RUN printf "memory_cache_bytes = 52428800\n" >> /zebrad.toml
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue