pkg: replace some README's with GoDoc package descriptions

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2022-09-30 17:11:37 +02:00
parent 572ca799db
commit f73d72bfdc
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
7 changed files with 6 additions and 8 deletions

View File

@ -1 +0,0 @@
This code provides helper functions for dealing with archive files.

View File

@ -1,3 +1,4 @@
// Package archive provides helper functions for dealing with archive files.
package archive // import "github.com/docker/docker/pkg/archive"
import (

View File

@ -1,5 +0,0 @@
# reexec
The `reexec` package facilitates the busybox style reexec of the docker binary that we require because
of the forking limitations of using Go. Handlers can be registered with a name and the argv 0 of
the exec of the binary will be used to find and execute custom init paths.

View File

@ -1,3 +1,7 @@
// Package reexec facilitates the busybox style reexec of the docker binary that
// we require because of the forking limitations of using Go. Handlers can be
// registered with a name and the argv 0 of the exec of the binary will be used
// to find and execute custom init paths.
package reexec // import "github.com/docker/docker/pkg/reexec"
import (

View File

@ -1 +0,0 @@
This package provides helper functions for dealing with string identifiers

View File

@ -1 +0,0 @@
SysInfo stores information about which features a kernel supports.

View File

@ -1,3 +1,4 @@
// Package sysinfo stores information about which features a kernel supports.
package sysinfo // import "github.com/docker/docker/pkg/sysinfo"
import "github.com/docker/docker/pkg/parsers"