Explore >> Select a destination


You are here

sputge.com
| | blog.randombits.host
3.6 parsecs away

Travel
| | During my move, the microSD card that was driving my LED matrix to show Spotify covers broke. As I'm stupid and had nothing backed up or in source control, I'm now tasked with recreating it from scratch. I'll be using Docker sitting on top of a Ubuntu 22.04 server
| | blog.oddbit.com
3.2 parsecs away

Travel
| | Someone asked on IRC about running ntpd in a container on Atomic, so I've put together a small example. We'll start with a very simple Dockerfile: FROM alpine RUN apk update RUN apk add openntpd ENTRYPOINT ["ntpd"] I'm using the alpine image as my starting point because it's very small, which makes this whole process go a little faster. I'm installing the openntpd package, which provides the ntpd binary. By setting an ENTRYPOINT here, the ntpd binary will be started by default, and any arguments passed t...
| | infinitedigits.co
2.5 parsecs away

Travel
| | A lightweight Dockerfile for Golang apps.
| | fak3r.com
14.0 parsecs away

Travel
| [AI summary] A technical guide explaining how to configure the Nginx web server for Debian or Ubuntu systems, including code snippets for performance and security.