Packages

Mix task to create a docker image of your application release. More detailed information about release image packaging at: https://github.com/asaaki/elixir-docker-image-packager

Current section

Files

Jump to
edip lib mix tasks edip.ex
Raw

lib/mix/tasks/edip.ex

defmodule Mix.Tasks.Edip do
@moduledoc """
EDIP creates a docker image of your application release.
## Install
In mix.exs:
defp deps do
[
{:exrm, "~> 0.18"},
{:edip, "~> 0.3"}
]
end
Then run:
mix deps.get edip && mix deps.compile edip
Or install as mix archive:
mix archive.install https://github.com/asaaki/mix-edip/releases/download/v0.3.0/edip-0.3.0.ez
## Usage
mix edip
## Help
mix help edip
## Options
# Override the (repository) name of the docker image.
mix edip --name <NAME>
mix edip -n <NAME>
# Set a specific tag for the docker image.
mix edip --tag <TAG>
mix edip -t <TAG>
# Set only a specific prefix for the docker image name (default: local).
mix edip --prefix <PREFIX>
mix edip -p <PREFIX>
# Silence build output of EDIP (will be logged to `.edip.log` instead).
mix edip --silent
mix edip -s
If `--name` and `--prefix` are given, the name option takes precedence (prefix will be ignored).
"""
@shortdoc "Create a Docker image of your app."
use Mix.Task
defdelegate run(args), to: Mix.Tasks.Edip.Image
end