-
Notifications
You must be signed in to change notification settings - Fork 146
Define image name format string. #479
Comments
Partially answering to myself: the spec/aci.md says: Since the definition of |
As a side note we could change docker2aci so it generates |
Few additional thoughts:
|
Related #514 |
I think we should probably just bite the bullet and put this somewhere in the spec but I'm not sure where. It's kind of an extra/suggestion. @sgotti any ideas? |
also #520 |
@jonboulle mmm. Given that it's not a foundamental part of the spec but it's coded inside the reference go implementation and used by rkt and probably other future project perhaps something in an "extra" directory like suggested by you sounds good. About the actual format another unresolved problem is the clash with other schemeless formats like filenames: rkt/rkt#715 |
The image name format string is used inside appc/spec/discovery and also at least by rkt. Do you think it should be part of and defined in appc/spec? If not, the related coded should probably be moved outside.
By now it's something like this
name[,label1=value][,label2=value],...
or
name:version[,label1=value][,label2=value]
where
name
type isACIdentifier
, label type isACIdentifier
and label value is string.A doubt:
Does
name
have to absolutely contain a domain part (for examplecoreos.com/etcd
)? If not meta discovery will probably fail as there's not domain to ask to.At the same time, actually docker2aci creates images from the default docker repository with names like
busybox:latest
.The text was updated successfully, but these errors were encountered: