Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@deckerego
Created December 5, 2017 21:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deckerego/0ca39aa1278bdaec198fb022a9edc4c6 to your computer and use it in GitHub Desktop.
Save deckerego/0ca39aa1278bdaec198fb022a9edc4c6 to your computer and use it in GitHub Desktop.
A test Docker container with interactive output
FROM ubuntu:latest
MAINTAINER john@deckerego.net
RUN apt-get --assume-yes update
RUN apt-get --assume-yes install docker.io iputils-ping net-tools netcat bash
ENV DOCKER_HOST 172.17.0.1
ENTRYPOINT ["ping", "localhost"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment