Why can't docker find this file?

This page summarizes the projects mentioned and recommended in the original post on /r/docker

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • migrate

    Database migrations. CLI and Golang library.

    # Build stage FROM golang:1.18.3-alpine AS builder WORKDIR /app COPY . . RUN go build -o main ./cmd/graphql-api/main.go RUN apk add curl RUN curl -L https://github.com/golang-migrate/migrate/releases/download/v4.15.2/migrate.linux-amd64.tar.gz | tar xvz # Run stage FROM alpine WORKDIR /app COPY --from=builder /app/main . COPY --from=builder /app/config/config-docker.yaml ./config/config-docker.yaml COPY --from=builder /app/migrate.linux-amd64 ./migrate COPY start.sh . COPY wait-for.sh . COPY internal/repositories/postgres/migrations ./migrations

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts