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_stop.ex
Raw

lib/mix/tasks/docker_stop.ex

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