cc0df88efc
New service, needed for official Dockerfile builds. OBS-URL: https://build.opensuse.org/request/show/835210 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/obs-service-docker_label_helper?expand=0&rev=1 |
||
---|---|---|
.gitattributes | ||
.gitignore | ||
docker_label_helper | ||
docker_label_helper.service | ||
obs-service-docker_label_helper.changes | ||
obs-service-docker_label_helper.spec | ||
README | ||
test.sh |
obs-service-docker_label_helper =============================== This service can be enabled to run during buildtime, when it will edit the Dockerfile to expand the PREFIXEDLABEL instruction. Example: ``` FROM opensuse/tumbleweed # labelprefix=org.opensuse.nano PREFIXEDLABEL org.opencontainers.image.title="Example container" PREFIXEDLABEL org.opencontainers.image.description="This contains nano" ``` expands to ``` FROM opensuse/tumbleweed LABEL org.opensuse.nano.title="Example container" LABEL org.opencontainers.image.title="Example container" LABEL org.opensuse.nano.description="This contains nano" LABEL org.opencontainers.image.description="This contains nano" ```