-
-
Notifications
You must be signed in to change notification settings - Fork 6k
Open
@moemoequte
Description
Feature Description
Currently when I push a Docker image to Gitea’s Container Registry, it is always created under my user namespace, regardless of whether I want it tied to a specific repository.
For example, following the docs:
docker build -t hello:latest .
docker tag hello:latest 192.168.3.1:3000/cialloo/hello/hello-image:latest
docker push 192.168.3.1:3000/cialloo/hello/hello-image:latest
This results in a container package created under my user namespace as:
cialloo/hello-image
But what I actually want is to associate the container package with the repository itself (similar to how ghcr.io/<owner>/<repo>/<image>
works for GitHub Packages).
Feature request:
-
Allow pushing container images to a repository namespace, so that images appear under the repository’s packages instead of the user namespace.
-
Example desired path:
192.168.3.1:3000/cialloo/hello/hello-image:latest
should be attached to the
cialloo/hello
repository’s packages.
Screenshots
No response