mirror of https://github.com/docker/cli.git
Add `--env-file` flag to `docker create service`
This fix tries to address the issue in 24712 and add `--env-file` file to `docker create service`. Related documentation has been updated. An additional integration has been added. This fix fixes 24712. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
parent
3b4084cb50
commit
1250d2afae
|
@ -32,6 +32,7 @@ func newCreateCommand(dockerCli *command.DockerCli) *cobra.Command {
|
||||||
flags.VarP(&opts.labels, flagLabel, "l", "Service labels")
|
flags.VarP(&opts.labels, flagLabel, "l", "Service labels")
|
||||||
flags.Var(&opts.containerLabels, flagContainerLabel, "Container labels")
|
flags.Var(&opts.containerLabels, flagContainerLabel, "Container labels")
|
||||||
flags.VarP(&opts.env, flagEnv, "e", "Set environment variables")
|
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 mount to the service")
|
flags.Var(&opts.mounts, flagMount, "Attach a mount to the service")
|
||||||
flags.StringSliceVar(&opts.constraints, flagConstraint, []string{}, "Placement constraints")
|
flags.StringSliceVar(&opts.constraints, flagConstraint, []string{}, "Placement constraints")
|
||||||
flags.StringSliceVar(&opts.networks, flagNetwork, []string{}, "Network attachments")
|
flags.StringSliceVar(&opts.networks, flagNetwork, []string{}, "Network attachments")
|
||||||
|
|
|
@ -395,6 +395,7 @@ type serviceOptions struct {
|
||||||
image string
|
image string
|
||||||
args []string
|
args []string
|
||||||
env opts.ListOpts
|
env opts.ListOpts
|
||||||
|
envFile opts.ListOpts
|
||||||
workdir string
|
workdir string
|
||||||
user string
|
user string
|
||||||
groups []string
|
groups []string
|
||||||
|
@ -422,6 +423,7 @@ func newServiceOptions() *serviceOptions {
|
||||||
labels: opts.NewListOpts(runconfigopts.ValidateEnv),
|
labels: opts.NewListOpts(runconfigopts.ValidateEnv),
|
||||||
containerLabels: opts.NewListOpts(runconfigopts.ValidateEnv),
|
containerLabels: opts.NewListOpts(runconfigopts.ValidateEnv),
|
||||||
env: opts.NewListOpts(runconfigopts.ValidateEnv),
|
env: opts.NewListOpts(runconfigopts.ValidateEnv),
|
||||||
|
envFile: opts.NewListOpts(nil),
|
||||||
endpoint: endpointOptions{
|
endpoint: endpointOptions{
|
||||||
ports: opts.NewListOpts(ValidatePort),
|
ports: opts.NewListOpts(ValidatePort),
|
||||||
},
|
},
|
||||||
|
@ -432,6 +434,25 @@ func newServiceOptions() *serviceOptions {
|
||||||
func (opts *serviceOptions) ToService() (swarm.ServiceSpec, error) {
|
func (opts *serviceOptions) ToService() (swarm.ServiceSpec, error) {
|
||||||
var service swarm.ServiceSpec
|
var service swarm.ServiceSpec
|
||||||
|
|
||||||
|
envVariables, err := runconfigopts.ReadKVStrings(opts.envFile.GetAll(), opts.env.GetAll())
|
||||||
|
if err != nil {
|
||||||
|
return service, err
|
||||||
|
}
|
||||||
|
|
||||||
|
currentEnv := make([]string, 0, len(envVariables))
|
||||||
|
for _, env := range envVariables { // need to process each var, in order
|
||||||
|
k := strings.SplitN(env, "=", 2)[0]
|
||||||
|
for i, current := range currentEnv { // remove duplicates
|
||||||
|
if current == env {
|
||||||
|
continue // no update required, may hide this behind flag to preserve order of envVariables
|
||||||
|
}
|
||||||
|
if strings.HasPrefix(current, k+"=") {
|
||||||
|
currentEnv = append(currentEnv[:i], currentEnv[i+1:]...)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
currentEnv = append(currentEnv, env)
|
||||||
|
}
|
||||||
|
|
||||||
service = swarm.ServiceSpec{
|
service = swarm.ServiceSpec{
|
||||||
Annotations: swarm.Annotations{
|
Annotations: swarm.Annotations{
|
||||||
Name: opts.name,
|
Name: opts.name,
|
||||||
|
@ -441,7 +462,7 @@ func (opts *serviceOptions) ToService() (swarm.ServiceSpec, error) {
|
||||||
ContainerSpec: swarm.ContainerSpec{
|
ContainerSpec: swarm.ContainerSpec{
|
||||||
Image: opts.image,
|
Image: opts.image,
|
||||||
Args: opts.args,
|
Args: opts.args,
|
||||||
Env: opts.env.GetAll(),
|
Env: currentEnv,
|
||||||
Labels: runconfigopts.ConvertKVStringsToMap(opts.containerLabels.GetAll()),
|
Labels: runconfigopts.ConvertKVStringsToMap(opts.containerLabels.GetAll()),
|
||||||
Dir: opts.workdir,
|
Dir: opts.workdir,
|
||||||
User: opts.user,
|
User: opts.user,
|
||||||
|
@ -532,6 +553,7 @@ const (
|
||||||
flagContainerLabelAdd = "container-label-add"
|
flagContainerLabelAdd = "container-label-add"
|
||||||
flagEndpointMode = "endpoint-mode"
|
flagEndpointMode = "endpoint-mode"
|
||||||
flagEnv = "env"
|
flagEnv = "env"
|
||||||
|
flagEnvFile = "env-file"
|
||||||
flagEnvRemove = "env-rm"
|
flagEnvRemove = "env-rm"
|
||||||
flagEnvAdd = "env-add"
|
flagEnvAdd = "env-add"
|
||||||
flagGroupAdd = "group-add"
|
flagGroupAdd = "group-add"
|
||||||
|
|
Loading…
Reference in New Issue