Packages

A library for easily constructing integration service dependencies in docker and orchestrating with mix.

Current section

Files

Jump to
divo lib mix tasks docker_kill.ex
Raw

lib/mix/tasks/docker_kill.ex

defmodule Mix.Tasks.Docker.Kill do
@moduledoc """
Executes `docker-compose down` with your :divo configuration.
"""
use Mix.Task
alias Divo.Compose
@impl Mix.Task
def run(_args) do
Compose.kill()
end
end