Skip to content

Instantly share code, notes, and snippets.

View Tryum's full-sized avatar

Thibault Jochem Tryum

View GitHub Profile
@Tryum
Tryum / Dockerfile
Last active May 3, 2018 09:15 — forked from prateekgogia/Dockerfile
Dockerfile to build 32 bit Docker container, for 32 bit docker daemon dev
# This file describes the standard way to build Docker, using docker
#
# Usage:
#
# # Assemble the full dev environment. This is slow the first time.
# docker build -t docker .
#
# # Mount your source in an interactive container for quick testing:
# docker run -v `pwd`:/go/src/github.com/docker/docker --privileged -i -t docker bash
#