Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 3.01 KB

README.md

File metadata and controls

43 lines (34 loc) · 3.01 KB

Docker

Repositoy to store Dockerfiles for Niclabs projects

Projects

  • adkintunmobile/: Adkintun Mobile is an Android application project for monitoring QoS on mobile network. For more information, visit the repository here.
  • ratadns/: RaTA DNS is a real time analytics project for DNS servers. Visit the repository here.
  • tchsm/: The Threshold Cryptography Hardware Security Module project provides a distributed software to emulate a HSM. For more information, visit the repository.
  • embeddable/: Provides a ready to use development environment for building, testing and running CI tasks for embedded applications.

Contributing

This repository is intended to contain only Dockerfiles and instructions related to its use. Place your Dockerfiles and related files at /project_name/

How to do the Dockerfile?

We are following some simple conventions to make the dockerfiles to look alike among them.

Miscellaneous

  1. When listing, several dependencies for instance, use one line per item, this make easier to see the diff among versions.
  2. Also when listing, follow an alphabetical order if possible. This make quicker to find something specific when searching.

Structure

  1. Header:
  2. From: You MUST have one docker from a specified version (FROM debian:8), you might use latest version but only if you have a fixed version of the same docker. This is intended to keep at least one version tested all the time.
  3. Maintainer: Include a maintainer.
  4. [Dependencies]:
  5. Binary: Install first the binary dependencies, and among them, start by the ones included in packages by the host OS. Use one line per dependency, this makes easier to see diff among versions.
  6. Source: After binary dependencies install the ones not available as packages or binaries and requires compilation or other process. Again, keep them in separate lines.
  7. [Configuration]:
  8. At this step, change configurations, copy needed files, etc.. This usually is very project-dependent, so it might be confusing for someone outside the project, add as many comments as posible to make it clear.
  9. [Clean Up]:
  10. There might be dependencies only needed at compile-time, the compiler is a classic example. Remove all dependencies not needed at run-time at this step. This keep the image smaller and removing the compiler in a production system is always a good idea.
  11. [Run command].

Example:

For reference or to use it as template you can see the following file.

Useful links: