What's Changed
- fix(reaper): forkExec error no such file or directory & prometheus exit error by @qianlongzt in #1
Installation Instructions
supercronic-linux-amd64
Add the following stanza to your Dockerfile to install supercronic-linux-amd64.
You will need to install curl beforehand.
# Latest releases available at https://github.com/aptible/supercronic/releases
ENV SUPERCRONIC_URL=https://github.com/CoreProc/supercronic/releases/download/v0.2.35/supercronic-linux-amd64 \
SUPERCRONIC_SHA1SUM=c77c68c3aa6d3c935c8ef91d7e07eee64a70996b \
SUPERCRONIC=supercronic-linux-amd64
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-linux-386
Add the following stanza to your Dockerfile to install supercronic-linux-386.
You will need to install curl beforehand.
# Latest releases available at https://github.com/aptible/supercronic/releases
ENV SUPERCRONIC_URL=https://github.com/CoreProc/supercronic/releases/download/v0.2.35/supercronic-linux-386 \
SUPERCRONIC_SHA1SUM=27554aa134dfa02052f7dd8cab3cd7415bcf1870 \
SUPERCRONIC=supercronic-linux-386
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-linux-arm
Add the following stanza to your Dockerfile to install supercronic-linux-arm.
You will need to install curl beforehand.
# Latest releases available at https://github.com/aptible/supercronic/releases
ENV SUPERCRONIC_URL=https://github.com/CoreProc/supercronic/releases/download/v0.2.35/supercronic-linux-arm \
SUPERCRONIC_SHA1SUM=73aa8edc088926543eda847e936efed374b01447 \
SUPERCRONIC=supercronic-linux-arm
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-linux-arm64
Add the following stanza to your Dockerfile to install supercronic-linux-arm64.
You will need to install curl beforehand.
# Latest releases available at https://github.com/aptible/supercronic/releases
ENV SUPERCRONIC_URL=https://github.com/CoreProc/supercronic/releases/download/v0.2.35/supercronic-linux-arm64 \
SUPERCRONIC_SHA1SUM=d118943c2e9d796862fbb29b58668f0e3cc4fd91 \
SUPERCRONIC=supercronic-linux-arm64
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
Full Changelog: 0.2.34...0.2.35