(env []string)
| 430 | } |
| 431 | |
| 432 | func (a *Application) containerConfig(env []string) *container.Config { |
| 433 | return &container.Config{ |
| 434 | Image: a.Settings.Image, |
| 435 | Labels: map[string]string{ |
| 436 | labelKey: a.Settings.Marshal(), |
| 437 | }, |
| 438 | Env: env, |
| 439 | } |
| 440 | } |
no test coverage detected