mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	Allow hostname to be updated on service.
Signed-off-by: Daniel Nephin <dnephin@docker.com>
(cherry picked from commit 1c65cb6657)
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
			
			
This commit is contained in:
		
							parent
							
								
									d981bbc288
								
							
						
					
					
						commit
						46cfeaf8ef
					
				
					 4 changed files with 3 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -33,7 +33,6 @@ func newCreateCommand(dockerCli *command.DockerCli) *cobra.Command {
 | 
			
		|||
 | 
			
		||||
	flags.VarP(&opts.labels, flagLabel, "l", "Service labels")
 | 
			
		||||
	flags.Var(&opts.containerLabels, flagContainerLabel, "Container labels")
 | 
			
		||||
	flags.StringVar(&opts.hostname, flagHostname, "", "Container hostname")
 | 
			
		||||
	flags.VarP(&opts.env, flagEnv, "e", "Set environment variables")
 | 
			
		||||
	flags.Var(&opts.envFile, flagEnvFile, "Read in a file of environment variables")
 | 
			
		||||
	flags.Var(&opts.mounts, flagMount, "Attach a filesystem mount to the service")
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -570,6 +570,7 @@ func addServiceFlags(cmd *cobra.Command, opts *serviceOptions) {
 | 
			
		|||
 | 
			
		||||
	flags.StringVarP(&opts.workdir, flagWorkdir, "w", "", "Working directory inside the container")
 | 
			
		||||
	flags.StringVarP(&opts.user, flagUser, "u", "", "Username or UID (format: <name|uid>[:<group|gid>])")
 | 
			
		||||
	flags.StringVar(&opts.hostname, flagHostname, "", "Container hostname")
 | 
			
		||||
 | 
			
		||||
	flags.Var(&opts.resources.limitCPU, flagLimitCPU, "Limit CPUs")
 | 
			
		||||
	flags.Var(&opts.resources.limitMemBytes, flagLimitMemory, "Limit Memory")
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -208,6 +208,7 @@ func updateService(flags *pflag.FlagSet, spec *swarm.ServiceSpec) error {
 | 
			
		|||
	updateEnvironment(flags, &cspec.Env)
 | 
			
		||||
	updateString(flagWorkdir, &cspec.Dir)
 | 
			
		||||
	updateString(flagUser, &cspec.User)
 | 
			
		||||
	updateString(flagHostname, &cspec.Hostname)
 | 
			
		||||
	if err := updateMounts(flags, &cspec.Mounts); err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -45,6 +45,7 @@ Options:
 | 
			
		|||
      --help                             Print usage
 | 
			
		||||
      --host-add list                    Add or update a custom host-to-IP mapping (host:ip) (default [])
 | 
			
		||||
      --host-rm list                     Remove a custom host-to-IP mapping (host:ip) (default [])
 | 
			
		||||
      --hostname string                  Container hostname
 | 
			
		||||
      --image string                     Service image tag
 | 
			
		||||
      --label-add list                   Add or update a service label (default [])
 | 
			
		||||
      --label-rm list                    Remove a label by its key (default [])
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue