We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35db5a3 commit 6624f25Copy full SHA for 6624f25
docs/content/usage/packages/container.en-us.md
@@ -39,6 +39,16 @@ Images must follow this naming convention:
39
40
`{registry}/{owner}/{image}`
41
42
+When building your docker image, using the naming convention above, this looks like:
43
+
44
+```shell
45
+# build an image with tag
46
+docker build -t {registry}/{owner}/{image}:{tag} .
47
+# name an existing image with tag
48
+docker tag {some-existing-image}:{tag} {registry}/{owner}/{image}:{tag}
49
+```
50
51
+where your registry is the domain of your gitea instance (e.g. gitea.example.com).
52
For example, these are all valid image names for the owner `testuser`:
53
54
`gitea.example.com/testuser/myimage`
0 commit comments