From a9029beb87cdc45f09840a6252c8f91adb1d430b Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Fri, 4 Sep 2020 00:46:19 -0400 Subject: [PATCH] Explicitly pass our config to the start command Resolves #1005 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2922e17b..102c692e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,4 +22,4 @@ FROM debian:buster-slim COPY --from=builder /zebra/target/release/zebrad / RUN echo "[tracing]\nendpoint_addr = '0.0.0.0:3000'" > /zebrad.toml EXPOSE 3000 8233 18233 -CMD [ "/zebrad", "start" ] +CMD [ "/zebrad", "-c", "/zebrad.toml", "start" ]