File: docker_image.go

package info (click to toggle)
docker.io 26.1.5%2Bdfsg1-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 68,644 kB
  • sloc: sh: 5,748; makefile: 912; ansic: 664; asm: 228; python: 162
file content (19 lines) | stat: -rw-r--r-- 647 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package image

import v1 "github.com/moby/docker-image-spec/specs-go/v1"

// HealthConfig holds configuration settings for the HEALTHCHECK feature.
//
// Deprecated: use [v1.HealthcheckConfig].
type HealthConfig = v1.HealthcheckConfig

// ImageConfig is a docker compatible config for an image
//
// Deprecated: use [v1.DockerOCIImageConfig].
type ImageConfig = v1.DockerOCIImageConfig

// Image is the JSON structure which describes some basic information about the image.
// This provides the `application/vnd.oci.image.config.v1+json` mediatype when marshalled to JSON.
//
// Deprecated: use [v1.DockerOCIImage].
type Image = v1.DockerOCIImage