|
You are here |
www.learnitguide.net | ||
| | | | |
some-natalie.dev
|
|
| | | | | How to run Dependabot on-premises using Red Hat Enterprise Linux | |
| | | | |
iridakos.com
|
|
| | | | | A step by step tutorial to dockerize a Rails application and run it in Docker with PostgreSQL and Redis. | |
| | | | |
mozzy.dev
|
|
| | | | | A quick look at what Docker is and how to get started. | |
| | | | |
memo.mx
|
|
| | | Docker multi-stage build is a great way to build a container images with a minimal footprint. Compiled languages like Go or Rust can take advantage of this by just shipping a binary to a container This is an example from the official docs: FROM golang:1.16 WORKDIR /go/src/github.com/alexellis/href-counter/ RUN go get -d -v golang.org/x/net/html COPY app.go ./ RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o app . FROM alpine:latest RUN apk --no-cache add ca-certificates WORKDIR /root/ COPY --from=0 /go/src/github. | ||