mirror of
https://github.com/minio/minio.git
synced 2024-12-26 15:15:55 -05:00
617f2394fb
* Hardcode snap version while a store bug is fixed This is a workaround for for a failure in the store, which limits the version to 32 characters. https://forum.snapcraft.io/t/versions-can-be-at-most-32-characters/1642 Capitalize the summary * add the snapcraft dirs to gitignore bring back settings.json to ignore
27 lines
756 B
YAML
27 lines
756 B
YAML
name: minio
|
|
version: master
|
|
summary: Open source object storage server compatible with Amazon S3 APIs
|
|
description: |
|
|
Minio is an object storage server released under Apache License v2.0. It is
|
|
compatible with Amazon S3 cloud storage service. It is best suited for
|
|
storing unstructured data such as photos, videos, log files, backups and
|
|
container / VM images. Size of an object can range from a few KBs to a
|
|
maximum of 5TB.
|
|
|
|
grade: devel # must be 'stable' to release into candidate/stable channels
|
|
confinement: strict
|
|
|
|
apps:
|
|
minio:
|
|
command: minio
|
|
plugs: [home, removable-media, network, network-bind]
|
|
|
|
parts:
|
|
minio:
|
|
source: .
|
|
plugin: go
|
|
go-importpath: github.com/minio/minio
|
|
after: [go]
|
|
go:
|
|
source-tag: go1.8.3
|