use fqin for container images (#125)

It's generally considered a better practice and it's more portable allowing podman to work without having to modify the name.

Reviewed-on: https://gitea.com/gitea/docs/pulls/125
Reviewed-by: Lunny Xiao <lunny@noreply.gitea.com>
Co-authored-by: TheFox0x7 <thefox0x7@gmail.com>
Co-committed-by: TheFox0x7 <thefox0x7@gmail.com>
This commit is contained in:
TheFox0x7
2024-12-17 20:23:46 +00:00
committed by Lunny Xiao
parent 2b9cc256ea
commit 7a4e79c937
48 changed files with 236 additions and 236 deletions

View File

@@ -23,7 +23,7 @@ In order to get file rendering through external binaries, their associated packa
If you're using a Docker image, your `Dockerfile` should contain something along this lines:
```docker
FROM gitea/gitea:@dockerVersion@
FROM docker.io/gitea/gitea:@dockerVersion@
[...]
COPY custom/app.ini /data/gitea/conf/app.ini

View File

@@ -358,7 +358,7 @@ If you want traefik to serve your Gitea instance, you can add the following labe
```yaml
gitea:
image: gitea/gitea
image: docker.io/gitea/gitea
...
labels:
- "traefik.enable=true"
@@ -374,7 +374,7 @@ In case you already have a site, and you want Gitea to share the domain name, yo
```yaml
gitea:
image: gitea/gitea
image: docker.io/gitea/gitea
...
labels:
- "traefik.enable=true"