MCPcopy Create free account
hub / github.com/coder/envbuilder / runtimeDataStore

Struct runtimeDataStore

envbuilder.go:61–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59type DockerConfig = configfile.ConfigFile
60
61type 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
76type execArgsInfo struct {
77 InitCommand string

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected