All Projects → powerman → dockerize

powerman / dockerize

Licence: MIT License
Utility to simplify running applications in docker containers

Programming Languages

go
31211 projects - #10 most used programming language
shell
77523 projects
Dockerfile
14818 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to dockerize

shelltestrunner
Easy, repeatable testing of CLI programs/commands
Stars: ✭ 93 (+2.2%)
Mutual labels:  command-line-tool
fe
A super-fast and easy to use command line fuzzy file searcher built with the rust programming language.
Stars: ✭ 23 (-74.73%)
Mutual labels:  command-line-tool
coinbash
💰 A bash script (CLI) for displaying crypto currencies market data in a terminal 🖥
Stars: ✭ 110 (+20.88%)
Mutual labels:  command-line-tool
landscaper
Apply code mods to projects, awesomely
Stars: ✭ 15 (-83.52%)
Mutual labels:  command-line-tool
cmany
Easily batch-build cmake projects!
Stars: ✭ 15 (-83.52%)
Mutual labels:  command-line-tool
google-CommandLine-Translation-Tool
命令行翻译工具-谷歌-中英文
Stars: ✭ 22 (-75.82%)
Mutual labels:  command-line-tool
ropr
A blazing fast™ multithreaded ROP Gadget finder. ropper / ropgadget alternative
Stars: ✭ 200 (+119.78%)
Mutual labels:  command-line-tool
json2xml
json to xml converter in python3
Stars: ✭ 76 (-16.48%)
Mutual labels:  command-line-tool
cli-progress
⌛ easy to use progress-bar for command-line/terminal applications
Stars: ✭ 672 (+638.46%)
Mutual labels:  command-line-tool
zswap-cli
Command-line tool to control zswap Linux kernel module options
Stars: ✭ 20 (-78.02%)
Mutual labels:  command-line-tool
anyshortcut-cli
CLI (Commnad line interface) version of Anyshortcut
Stars: ✭ 82 (-9.89%)
Mutual labels:  command-line-tool
rctl
A set of command line tools based on R and JavaScript.
Stars: ✭ 15 (-83.52%)
Mutual labels:  command-line-tool
cli-boilerplates
🚀 A Command Line Tool to generate boilerplates with creation of files globally. A tool to help students quick start with single line of code.
Stars: ✭ 27 (-70.33%)
Mutual labels:  command-line-tool
przm
🎨 A simple, yet feature rich color picker and manipulator
Stars: ✭ 19 (-79.12%)
Mutual labels:  command-line-tool
diskusage
FANTASTIC SPEED utility to find out top largest folders/files on the disk.
Stars: ✭ 64 (-29.67%)
Mutual labels:  command-line-tool
Ether
A Command-Line Interface for the Swift Package Manager
Stars: ✭ 86 (-5.49%)
Mutual labels:  command-line-tool
terminal-style
🎨 Return your terminal message in style! Change the text style, text color and text background color from the terminal, console or shell interface with ANSI color codes. Support for Laravel and Composer.
Stars: ✭ 16 (-82.42%)
Mutual labels:  command-line-tool
vintage
[UNMAINTED] command-line tool to check for outdated Swift Package Manager dependencies
Stars: ✭ 33 (-63.74%)
Mutual labels:  command-line-tool
malli-cli
Command-line interface from the comfort of a metosin/malli schema
Stars: ✭ 36 (-60.44%)
Mutual labels:  command-line-tool
pip upgrade outdated
Install outdated python packages.
Stars: ✭ 62 (-31.87%)
Mutual labels:  command-line-tool

dockerize

Release Docker Automated Build CI Go Report Card Coverage Status

Utility to simplify running applications in docker containers.

About this fork: This fork is supposed to become a community-maintained replacement for not maintained original repo. Everyone who has contributed to the project may become a collaborator - just ask for it in PR comments after your PR has being merged.

Table of Contents

Overview

dockerize is a utility to simplify running applications in docker containers. It allows you to:

  • generate application configuration files at container startup time from templates and container environment variables
  • Tail multiple log files to stdout and/or stderr
  • Wait for other services to be available using TCP, HTTP(S), unix before starting the main process.

The typical use case for dockerize is when you have an application that has one or more configuration files and you would like to control some of the values using environment variables.

For example, a Python application using Sqlalchemy might not be able to use environment variables directly. It may require that the database URL be read from a python settings file with a variable named SQLALCHEMY_DATABASE_URI. dockerize allows you to set an environment variable such as DATABASE_URL and update the python file when the container starts. In addition, it can also delay the starting of the python application until the database container is running and listening on the TCP port.

Another use case is when the application logs to specific files on the filesystem and not stdout or stderr. This makes it difficult to troubleshoot the container using the docker logs command. For example, nginx will log to /var/log/nginx/access.log and /var/log/nginx/error.log by default. While you can sometimes work around this, it's tedious to find a solution for every application. dockerize allows you to specify which logs files should be tailed and where they should be sent.

See A Simple Way To Dockerize Applications

Installation

Dockerize is a statically compiled binary, so it should work with any base image.

To download it with most base images all you need is to install curl first:

### alpine:
apk add curl

### debian, ubuntu:
apt update && apt install -y curl

and then either install the latest version:

curl -sfL $(curl -s https://api.github.com/repos/powerman/dockerize/releases/latest | grep -i /dockerize-$(uname -s)-$(uname -m)\" | cut -d\" -f4) | install /dev/stdin /usr/local/bin/dockerize

or specific version:

curl -sfL https://github.com/powerman/dockerize/releases/download/v0.11.5/dockerize-`uname -s`-`uname -m` | install /dev/stdin /usr/local/bin/dockerize

If curl is not available (e.g. busybox base image) then you can use wget:

### busybox: latest version
wget -O - $(wget -O - https://api.github.com/repos/powerman/dockerize/releases/latest | grep -i /dockerize-$(uname -s)-$(uname -m)\" | cut -d\" -f4) | install /dev/stdin /usr/local/bin/dockerize

### busybox: specific version
wget -O - https://github.com/powerman/dockerize/releases/download/v0.11.5/dockerize-`uname -s`-`uname -m` | install /dev/stdin /usr/local/bin/dockerize

PGP public key for verifying signed binaries: https://powerman.name/about/Powerman.asc

curl -sfL https://powerman.name/about/Powerman.asc | gpg --import
curl -sfL https://github.com/powerman/dockerize/releases/download/v0.11.5/dockerize-`uname -s`-`uname -m`.asc >dockerize.asc
gpg --verify dockerize.asc /usr/local/bin/dockerize

Docker Base Image

The powerman/dockerize image is a base image based on alpine linux. dockerize is installed in the $PATH and can be used directly.

FROM powerman/dockerize
...
ENTRYPOINT dockerize ...

Usage

dockerize works by wrapping the call to your application using the ENTRYPOINT or CMD directives.

This would generate /etc/nginx/nginx.conf from the template located at /etc/nginx/nginx.tmpl and send /var/log/nginx/access.log to STDOUT and /var/log/nginx/error.log to STDERR after running nginx, only after waiting for the web host to respond on tcp 8000:

CMD dockerize -template /etc/nginx/nginx.tmpl:/etc/nginx/nginx.conf -stdout /var/log/nginx/access.log -stderr /var/log/nginx/error.log -wait tcp://web:8000 nginx

Command-line Options

You can specify multiple templates by passing using -template multiple times:

$ dockerize -template template1.tmpl:file1.cfg -template template2.tmpl:file3

Templates can be generated to STDOUT by not specifying a dest:

$ dockerize -template template1.tmpl

Template may also be a directory. In this case all files within this directory are recursively processed as template and stored with the same name in the destination directory. If the destination directory is omitted, the output is sent to STDOUT. The files in the source directory are processed in sorted order (as returned by ioutil.ReadDir).

$ dockerize -template src_dir:dest_dir

If the destination file already exists, dockerize will overwrite it. The -no-overwrite flag overrides this behaviour.

$ dockerize -no-overwrite -template template1.tmpl:file

You can tail multiple files to STDOUT and STDERR by passing the options multiple times.

$ dockerize -stdout info.log -stdout perf.log

If your file uses {{ and }} as part of it's syntax, you can change the template escape characters using the -delims.

$ dockerize -delims "<%:%>" -template template1.tmpl

You can require all environment variables mentioned in template exists with -template-strict:

$ dockerize -template-strict -template template1.tmpl

HTTP headers can be specified for http/https protocols. If header is specified as a file path then file must contain single string with Header: value.

$ dockerize -wait http://web:80 -wait-http-header "Authorization:Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=="

Required HTTP status codes can be specified, otherwise any 2xx status will be accepted.

$ dockerize -wait http://web:80 -wait-http-status-code 302 -wait-http-status-code 200

HTTP redirects can be ignored:

$ dockerize -wait http://web:80 -wait-http-skip-redirect

Waiting for other dependencies

It is common when using tools like Docker Compose to depend on services in other linked containers, however oftentimes relying on links is not enough - whilst the container itself may have started, the service(s) within it may not yet be ready - resulting in shell script hacks to work around race conditions.

Dockerize gives you the ability to wait for services on a specified protocol (file, tcp, tcp4, tcp6, http, https, amqp, amqps and unix) before starting your application:

$ dockerize -wait tcp://db:5432 -wait http://web:80 -wait file:///tmp/generated-file

Multiple URLs can also be specified with -wait-list flag, that accept a space-separated list of URLs. The behaviour is equivalent to use multiple -wait flags. The two flags can be combined.

This command is equivalent to the one above:

$ dockerize -wait-list "tcp://db:5432 http://web:80 file:///tmp/generated-file"

Timeout

You can optionally specify how long to wait for the services to become available by using the -timeout # argument (Default: 10 seconds). If the timeout is reached and the service is still not available, the process exits with status code 123.

$ dockerize -wait tcp://db:5432 -wait http://web:80 -timeout 10s

See this issue for a deeper discussion, and why support isn't and won't be available in the Docker ecosystem itself.

Delay before retrying

You can optionally specify how long to wait after a failed -wait check by using the -wait-retry-interval # argument (Default: 1 second).

Waiting for 5 seconds before checking again of a currently unavailable service:

$ dockerize -wait tcp://db:5432 -wait-retry-interval 5s

Use custom CA for SSL cert verification for https/amqps connections

$ dockerize -cacert /path/to/ca.pem -wait https://web:80

Skip SSL cert verification for https/amqps connections

$ dockerize -skip-tls-verify -wait https://web:80

Injecting env vars from INI file

You can load defaults for missing env vars from INI file. Multiline flag allows parsing multiline INI entries. File with header must contain single string with Header: value.

$ dockerize -env /path/to/file.ini -env-section SectionName -multiline …
$ dockerize -env http://localhost:80/file.ini \
    -env-header "Header: value" -env-header /path/to/file/with/header …

Using Templates

Templates use Golang text/template. You can access environment variables within a template with .Env.

{{ .Env.PATH }} is my path

In template you can use a lot of functions provided by Sprig plus a few built in functions as well:

  • exists $path - Determines if a file path exists or not. {{ if exists "/etc/default/myapp" }}
  • parseUrl $url - Parses a URL into it's protocol, scheme, host, etc. parts. Alias for url.Parse
  • isTrue $value - Parses a string $value to a boolean value. {{ if isTrue .Env.ENABLED }}
  • jsonQuery $json $query - Returns the result of a selection query against a json document.
  • readFile $fileName - Returns the content of the named file or empty string if file not exists.

WARNING! Incompatibility with original dockerize v0.6.1! These template functions was changed because of adding Sprig functions, so carefully review your templates before upgrading:

  • default - order of params has changed.
  • contains - now it works on string instead of map, use hasKey instead.
  • split - now it split into map instead of list, use splitList instead.
  • replace - order and amount of params has changed.
  • loop - removed, use untilStep instead.

jsonQuery

Objects and fields are accessed by name. Array elements are accessed by index in square brackets (e.g. [1]). Nested elements are separated by dots (.).

Examples:

With the following JSON in .Env.SERVICES

{
  "services": [
    {
      "name": "service1",
      "port": 8000,
    },{
      "name": "service2",
      "port": 9000,
    }
  ]
}

the template expression jsonQuery .Env.SERVICES "services.[1].port" returns 9000.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].