README.md

By my-repo

README.md Alternatives

Similar projects and alternatives to README.md

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better README.md alternative or higher similarity.

README.md reviews and mentions

Posts with mentions or reviews of README.md. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-06-28.
  • Building Production Grade Container Images
    3 projects | dev.to | 28 Jun 2021
    FROM golang as builder WORKDIR /src/echo-server COPY . . ARG VET_FLAGS="" RUN go vet "$VET_FLAGS" ARG TEST_FLAGS="" RUN go test "$TEST_FLAGS" ARG LD_FLAGS='-linkmode external -w -extldflags "-static"' ARG BUILD_FLAGS="" RUN go build -ldflags "$LD_FLAGS" -o echo-server "$BUILD_FLAGS" # --- FROM alpine as runner RUN apk add --update curl && rm -rf /var/cache/apk/* HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \ CMD curl -f localhost || exit 1 RUN adduser \ --disabled-password \ --gecos "" \ --home /run \ --no-create-home \ "docker" CMD ["/run/echo-server"] ARG version="0.1.0" ARG env="dev" ARG branch="main" ARG commit_hash="unknown" ARG created="unknown" LABEL org.opencontainers.image.created=${created} \ org.opencontainers.image.url="https://github.com/my-repo" \ org.opencontainers.image.source="https://github.com/my-repo/Dockerfile" \ org.opencontainers.image.version="${version}-${env}" \ org.opencontainers.image.revision=${commit_hash} \ org.opencontainers.image.vendor="rainbowstack" \ org.opencontainers.image.title="echo-server" \ org.opencontainers.image.description="go echo server" \ org.opencontainers.image.documentation="https://github.com/my-repo/README.md" \ org.opencontainers.image.authors="nico braun" \ org.opencontainers.image.licenses="(BSD-1-Clause)" \ org.opencontainers.image.ref.name=${branch} \ dev.rainbowstack.environment="${env}" COPY --from=builder /src/echo-server /run/ USER docker

Stats

Basic README.md repo stats
1
-
-
-

Popular Comparisons


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com