Current section

Files

Jump to
excontainers lib docker bind_mount.ex
Raw

lib/docker/bind_mount.ex

defmodule Docker.BindMount do
defstruct [:host_src, :container_dest, options: "ro"]
def new(host_src, container_dest, options) do
%__MODULE__{host_src: host_src, container_dest: container_dest, options: options}
end
end