Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added docker labels - follows label schema namespace #94

Merged
merged 4 commits into from Oct 2, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 11 additions & 1 deletion buildscripts/docker/Dockerfile
Expand Up @@ -6,5 +6,15 @@ FROM ubuntu:16.04

COPY maya /usr/local/bin

ENTRYPOINT ["maya"]
ARG VERSION
ARG BUILD_DATE

LABEL org.label-schema.name="maya"
LABEL org.label-schema.description="CLI for OpenEBS"
LABEL org.label-schema.url="http://www.openebs.io/"
LABEL org.label-schema.vcs-url="https://github.com/openebs/maya"
LABEL org.label-schema.schema-version="1.0"
LABEL org.label-schema.version=$VERSION
LABEL org.label-schema.build-date=$BUILD_DATE

ENTRYPOINT ["maya"]