|
You are here |
blog.kulman.sk | ||
| | | | |
ash.ms
|
|
| | | | | Tonight I set up a ssh tunnel that punches out from my server skipping the NAT, forwarding, and DNS complexities entirely. It'll dial home from anywhere there's network so I could even take my server to the park and it should work over 5g. | |
| | | | |
vadosware.io
|
|
| | | | | Setting up an instance of Wordpress easily with Docker Compose | |
| | | | |
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 /g... | |
| | | | |
pilledtexts.com
|
|
| | | I use nginx as my webserver. It's fast and has a tone of features. However, for me it's been a process to learn how to set up properly redirecting, ... | ||