dockerize

Simplify running applications in Docker containers with template rendering

brewmacoslinux
Try with needOr install directly
Source

About

Utility to simplify running applications in docker containers

Commands

dockerize

Examples

Wait for a service on localhost:5432 before starting application$ dockerize -wait tcp://localhost:5432 -timeout 10s ./start.sh
Render configuration from environment variables using template$ dockerize -template /etc/config.tmpl:/etc/config.conf
Wait for multiple services and render templates before execution$ dockerize -wait tcp://db:5432 -wait tcp://redis:6379 -template nginx.conf.tmpl:nginx.conf nginx