Explore >> Select a destination


You are here

github.com
| | www.tjmaher.com
10.7 parsecs away

Travel
| | T.J. Maher, a QA Engineer since 1996, blogs about his transition from a manual tester to an automation developer to a software engineer in test.
| | www.calazan.com
11.3 parsecs away

Travel
| |
| | mozzy.dev
11.7 parsecs away

Travel
| | A quick look at what Docker is and how to get started.
| | blog.oddbit.com
73.4 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...