Skip to content

Latest commit

 

History

History
45 lines (40 loc) · 1.01 KB

README.md

File metadata and controls

45 lines (40 loc) · 1.01 KB

Docker image template (version v1)

This template should be used to create a new docker image version.

  1. Copy this template directory
  2. Give your new image a meaningful name.
  3. Append your new version to the version list in ../README.md
  4. Edit this README
    • Change title & version!
  5. Edit the Dockerfile
  6. Edit the Makefile

Features

  • installs software one
  • installs software two

Makefile

  • make help
    • show Makefile options
  • make all
    • build image & run container
  • make build
    • build image
  • make run
    • run container
  • make clean
    • delete volumes
  • make distclean
    • delete image

Image arguments

  • FOO
    • modifies something
  • BAR
    • modifies something else

See the Dockerfile or Makefile for more information