2022-03-30 10:42:47 +02:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-03-30 10:42:47 +02:00
|
|
|
|
|
|
|
|
package container
|
|
|
|
|
|
|
|
|
|
const (
|
2025-06-16 16:27:01 +08:00
|
|
|
ContentTypeDockerDistributionManifestV2 = "application/vnd.docker.distribution.manifest.v2+json"
|
|
|
|
|
|
2022-03-30 10:42:47 +02:00
|
|
|
ManifestFilename = "manifest.json"
|
|
|
|
|
UploadVersion = "_upload"
|
|
|
|
|
)
|