/docker-library

Docker library project for building useful docker images with the maven docker plugin.

Primary LanguageShellMIT LicenseMIT

Docker Library

Docker library project for building useful docker images with the maven docker plugin.

Images

Here's a list of all docker images sorted by category.

Artifact Repositories

Build Tools

Load Test Tools

Operating Systems

Runtimes

Secrets Management

Static Code Analysis

Web Servers

Build

To build this project you'll have to install some tools on your machine.

Prerequisities

Script

  • Execute build script:
    Usage:
      ./build.sh [Options] <Args>
    
    Options:
      -h                    Print this help text
      -c                    Remove all docker containers and images
      -d                    Deploy docker images to docker registry
      -f                    Build docker images without build cache
      -p <project-list>     Build comma separated maven project list
      -s                    Create docker containers from images and start them
      -t <tag>              Build with specified image tag
      -v                    Verbose logging of errors (optimise flag false)
    
    Examples:
      ./build.sh                                     Build all docker images
      ./build.sh -c                                  Remove all docker containers and images
      ./build.sh -p debian,jdk                       Build only docker images for 'debian' and 'jdk'
      ./build.sh -p debian,jdk -t master -f          -> and tag with name 'master'
      ./build.sh -p debian,jdk -t master -f          -> and do not use docker build cache
      ./build.sh -p debian,jdk -t master -f -s       -> and start containers
      ./build.sh -p debian,jdk -t master -f -s -d    -> and deploy to docker registry
      ./build.sh -p debian,jdk -t master -f -s -d -v -> and verbose logging of errors      
    

Additional information