fix: typo

This commit is contained in:
Jason Song 2023-06-19 14:46:34 +08:00
parent fc310bc34b
commit 553a254bae
No known key found for this signature in database
GPG key ID: 8402EEEE4511A8B5

View file

@ -48,7 +48,7 @@ type Container struct {
Options string `yaml:"options"` // Options specifies additional options for the container.
WorkdirParent string `yaml:"workdir_parent"` // WorkdirParent specifies the parent directory for the container's working directory.
ValidVolumes []string `yaml:"valid_volumes"` // ValidVolumes specifies the volumes (including bind mounts) can be mounted to containers.
DockerHost string `json:"docker_host"` // DockerHost specifies the Docker host. It overrides the value specified in environment variable DOCKER_HOST.
DockerHost string `yaml:"docker_host"` // DockerHost specifies the Docker host. It overrides the value specified in environment variable DOCKER_HOST.
}
// Config represents the overall configuration.