| 59 | type DockerConfig = configfile.ConfigFile |
| 60 | |
| 61 | type runtimeDataStore struct { |
| 62 | // Runtime data. |
| 63 | Image bool `json:"-"` |
| 64 | Built bool `json:"-"` |
| 65 | SkippedRebuild bool `json:"-"` |
| 66 | Scripts devcontainer.LifecycleScripts `json:"-"` |
| 67 | ImageEnv []string `json:"-"` |
| 68 | ContainerEnv map[string]string `json:"-"` |
| 69 | RemoteEnv map[string]string `json:"-"` |
| 70 | DevcontainerPath string `json:"-"` |
| 71 | |
| 72 | // Data stored in the magic image file. |
| 73 | ContainerUser string `json:"container_user"` |
| 74 | } |
| 75 | |
| 76 | type execArgsInfo struct { |
| 77 | InitCommand string |
nothing calls this directly
no outgoing calls
no test coverage detected