Elixir wrapper around Minio. It starts the minio server alongside your elixir application.
# Config can be used directly with :ex_aws/:ex_aws_s3
s3_config = [
access_key_id: "minio_key",
secret_access_key: "minio_secret",
scheme: "http://",
region: "local",
host: "127.0.0.1",
port: 9000,
# Minio specific
minio_path: "data" # Defaults to ./minio in your mix project
]
# In a supervisor
children = [
{MinioServer, s3_config}
]
# or manually
{:ok, _} = MinioServer.start_link(s3_config)
The minio binary is not included in the package to save on space. But you can easily download them using a mix task:
# with menu to select arch / version
mix minio_server.download
# download the latest SERVER binary matching the current machine
mix minio_server.download --arch auto --version latest
# download the latest SERVER binary for darwin-amd64
mix minio_server.download --arch darwin-amd64 --version latest
# download the latest CLIENT binary for darwin-amd64
mix minio_server.download --client --arch darwin-amd64 --version latest
To simplify updating available versions for client / server binaries, there are following commands available:
MinioServer.Versions.create_versions_file(:client)
MinioServer.Versions.create_versions_file(:server)
Minio does support lifecycle configuration, which I'm using to expire abandoned uploads / multipart chunks.
Setup of a new bucket with temp/
folder.
config = s3()
{:ok, _} =
ExAws.S3.put_bucket("default", Keyword.fetch!(config, :region))
|> ExAws.request(config)
livecycle_rules = [
%{
id: "temp-folder-cleanup",
enabled: true,
filter: %{
prefix: "temp/"
},
actions: %{
expiration: %{
trigger: {:days, 1},
expired_object_delete_marker: true
},
abort_incomplete_multipart_upload: %{
trigger: {:days, 1}
}
}
}
]
{:ok, _} =
ExAws.S3.put_bucket_lifecycle("default", livecycle_rules)
|> ExAws.request(config)
If available in Hex, the package can be installed
by adding minio_server
to your list of dependencies in mix.exs
:
def deps do
[
{:minio_server, "~> 0.4.0"}
]
end
Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/minio_server.