mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Set the container's hostname to the truncated ID
This commit is contained in:
parent
6bf4a10ed4
commit
54fa59c8ec
1 changed files with 7 additions and 1 deletions
|
@ -69,9 +69,15 @@ func (runtime *Runtime) Create(config *Config) (*Container, error) {
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
// Generate id
|
||||
id := GenerateId()
|
||||
// Generate default hostname
|
||||
if config.Hostname == "" {
|
||||
config.Hostname = id[:12]
|
||||
}
|
||||
container := &Container{
|
||||
// FIXME: we should generate the ID here instead of receiving it as an argument
|
||||
Id: GenerateId(),
|
||||
Id: id,
|
||||
Created: time.Now(),
|
||||
Path: config.Cmd[0],
|
||||
Args: config.Cmd[1:], //FIXME: de-duplicate from config
|
||||
|
|
Loading…
Reference in a new issue