v0.1.0
Installation Instructions
supercronic-386
Add the following stanza to your Dockerfile to install supercronic-386
.
You will need to install curl
beforehand.
ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.1.0/supercronic-386 \
SUPERCRONIC=supercronic-386 \
SUPERCRONIC_SHA1SUM=4b08c58823a3257e2ad07478f846ea7c27491b43
RUN curl -fsSLO "$SUPERCRONIC_URL" \
&& echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - \
&& chmod +x "$SUPERCRONIC" \
&& mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \
&& ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic
supercronic-amd64
Add the following stanza to your Dockerfile to install supercronic-amd64
.
You will need to install curl
beforehand.
ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.1.0/supercronic-amd64 \
SUPERCRONIC=supercronic-amd64 \
SUPERCRONIC_SHA1SUM=a0a98b1daef317ea18d3751f163495525ba7acdf
RUN curl -fsSLO "$SUPERCRONIC_URL" \
&& echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - \
&& chmod +x "$SUPERCRONIC" \
&& mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \
&& ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic
supercronic-arm
Add the following stanza to your Dockerfile to install supercronic-arm
.
You will need to install curl
beforehand.
ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.1.0/supercronic-arm \
SUPERCRONIC=supercronic-arm \
SUPERCRONIC_SHA1SUM=cd43c0d682bee1fdf891a13ec193fd84962e9f54
RUN curl -fsSLO "$SUPERCRONIC_URL" \
&& echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - \
&& chmod +x "$SUPERCRONIC" \
&& mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \
&& ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic
supercronic-arm64
Add the following stanza to your Dockerfile to install supercronic-arm64
.
You will need to install curl
beforehand.
ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.1.0/supercronic-arm64 \
SUPERCRONIC=supercronic-arm64 \
SUPERCRONIC_SHA1SUM=4dcb8fc900c3896cb7a801fd013e34159850b4e8
RUN curl -fsSLO "$SUPERCRONIC_URL" \
&& echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - \
&& chmod +x "$SUPERCRONIC" \
&& mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \
&& ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic