首页 > TAG信息列表 > c10

Docker的数据管理

Docker的数据管理 管理Docker容器中数据主要有两种方式:数据卷(Data Volumes)和数据卷容器(DataVolumes Containers)。 数据卷 数据卷是一个供容器使用的特殊目录,位于容器中。可将宿主机的目录挂载到数据卷上,对数据卷的修改操作立刻可见,并且更新数据不会影响镜像,从而实现数据在宿主

go语言的结构体-封装

package main import ( "fmt" "unsafe" ) // Course类名,struct关键字 type Course struct { Name string Price int Url string } //函数的接收者,将Course struct进行绑定 func (c Course) printCourseInfo() { fmt.Printf("课程名:%s