I love it when capitalization matters, contrary to the docs

This commit is contained in:
Deirdre Connolly 2020-11-14 21:36:41 -05:00 committed by Deirdre Connolly
parent 477eac7f19
commit 87d749ee4f
1 changed files with 4 additions and 4 deletions

View File

@ -35,13 +35,13 @@ FROM debian:buster-slim AS zebrad-release
COPY --from=builder /zebra/target/release/zebrad /
ARG checkpoint_sync=true
ARG network=Mainnet
ARG CHECKPOINT_SYNC=true
ARG NETWORK=Mainnet
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 = '${network}'\n" >> /zebrad.toml
RUN printf "network = '${NETWORK}'\n" >> /zebrad.toml
RUN printf "[state]\n" >> /zebrad.toml
RUN printf "cache_dir = '/zebrad-cache'\n" >> /zebrad.toml
RUN printf "memory_cache_bytes = 52428800\n" >> /zebrad.toml