From eca65fcb16d297520a5380af123f4df9f19f43a2 Mon Sep 17 00:00:00 2001 From: Martin Tzvetanov Grigorov Date: Thu, 7 Dec 2023 14:05:04 +0200 Subject: [PATCH] Fix typos in README.md files Update the list of openEuler Docker tags Signed-off-by: Martin Tzvetanov Grigorov --- README.en.md | 12 ++++++------ openeuler/README.md | 14 ++++++++++---- openeuler/download.sh | 2 +- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/README.en.md b/README.en.md index 8e43ad0..4bf6acd 100644 --- a/README.en.md +++ b/README.en.md @@ -2,7 +2,7 @@ #### Introduction -Dockerfiles for openEuler official container images, include openEuler basic image and appliaction images. +Dockerfiles for openEuler official container images, include openEuler basic image and application images. #### openEuler Basic Container Image @@ -10,9 +10,9 @@ Dockerfiles for openEuler official container images, include openEuler basic ima openEuler basic image is published by openEuler community in [openEuler repo](https://repo.openeuler.org) -"openeuler:latest" is current stable avalible image. +"openeuler:latest" is the current stable available image. -After offcial images published, we will push to every remote container images hub: +After official images published, we will push to every remote container images hub: - name: `openeuler/openeuler` - Download: `docker pull [Remote repo URL]openeuler/openeuler[:tags]` @@ -38,9 +38,9 @@ such as, the nginx 1.20.1 based on openEuler 20.03 LTS SP1 is under `nginx/1.20. - The container images would be published after Dockerfile merged under `openeuler`, such as: `openeuler/nginx:1.20.1-20.03-lts-sp1`. -Every openEuler application images contains the README (such as nginx/README.md), included: +Every openEuler application images contains a README.md (such as nginx/README.md), included: -- Desciption for container images build. +- Description for container images build. - openEuler, container service (like Docker, iSula) and application version info. The container images would be published under `openeuler` after Dockerfile merged. We use `docker buildx` to build the container image for amd64 and arm64 platforms. @@ -48,7 +48,7 @@ The build steps are as follows: - go into directory of `[Application name]/[Application version]/[openEuler version]` - execute the command `docker buildx build -t tag_name --platform linux/amd64,linux/arm64 .` -#### Avalible Container Repo +#### Available Container Repo - Hub oepkgs: https://hub.oepkgs.net/ diff --git a/openeuler/README.md b/openeuler/README.md index f23e1f7..f90244f 100644 --- a/openeuler/README.md +++ b/openeuler/README.md @@ -6,7 +6,7 @@ - Where to get help: [openEuler CloudNative SIG](https://gitee.com/openeuler/cloudnative), [openEuler](https://gitee.com/openeuler/community) -# Build referebce +# Build reference 1. Download all images: @@ -24,11 +24,17 @@ We are using `buildx` in here to generate multi-arch images, see more in [Docker # Supported tags and respective Dockerfile links +- 23.09 +- 23.03 +- 22.09 +- 22.03-lts-sp2 +- 22.03-lts-sp1 +- 22.03-lts - 21.03 - 20.09 -- 20.03-LTS-SP2 -- 20.03-LTS-SP1, 20.03, latest -- 20.03-LTS +- 20.03-lts-sp2 +- 20.03-lts-sp1, 20.03, latest +- 20.03-lts ## Operating System diff --git a/openeuler/download.sh b/openeuler/download.sh index 6b9db74..0b6ea81 100755 --- a/openeuler/download.sh +++ b/openeuler/download.sh @@ -4,7 +4,7 @@ set -ex archs="x86_64 aarch64" input_version=$1 -versions=${input_version:-"20.03-lts 20.03-lts-sp1 20.03-lts-sp2 20.09 21.03 21.09 22.03-lts"} +versions=${input_version:-"20.03-lts 20.03-lts-sp1 20.03-lts-sp2 20.09 21.03 21.09 22.03-lts 22.03-lts-sp1 22.03-lts-sp2 22.09 23.03 23.09"} for ARCH in $archs ; do if [[ "$ARCH" = "aarch64" ]];then -- Gitee