Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Query #236

Open
wants to merge 42 commits into
base: main
Choose a base branch
from
Open

Query #236

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
a1a3733
Update images.txt
sxtom825 Dec 3, 2024
9be7462
Update images.txt
sxtom825 Dec 3, 2024
a7118a9
Update images.txt
sxtom825 Dec 3, 2024
4348d41
Update images.txt
sxtom825 Dec 3, 2024
6481c08
Update images.txt
sxtom825 Dec 3, 2024
cc52484
Update images.txt
sxtom825 Dec 3, 2024
928b486
Update images.txt
sxtom825 Dec 6, 2024
ee7e62c
Update images.txt
sxtom825 Dec 6, 2024
aae4ed6
Update images.txt
sxtom825 Dec 6, 2024
fdca635
Update images.txt
sxtom825 Dec 6, 2024
b0c2077
Update images.txt
sxtom825 Dec 6, 2024
358b3f4
Update images.txt
sxtom825 Dec 6, 2024
8bb21a7
Update images.txt
sxtom825 Dec 6, 2024
5b5da74
Update images.txt
sxtom825 Dec 6, 2024
0328c40
Update images.txt
sxtom825 Dec 6, 2024
59b8865
Update images.txt
sxtom825 Dec 6, 2024
183f6ec
Update images.txt
sxtom825 Dec 7, 2024
ca9f7e0
Update images.txt
sxtom825 Dec 7, 2024
0bd458e
Update images.txt
sxtom825 Dec 7, 2024
f556ac1
Update images.txt
sxtom825 Dec 7, 2024
7acb240
Update images.txt
sxtom825 Dec 7, 2024
816d1b8
Update images.txt
sxtom825 Dec 8, 2024
a1e27bd
Update images.txt
sxtom825 Dec 12, 2024
f276145
Update images.txt
sxtom825 Dec 12, 2024
4ac6d7e
Update images.txt
sxtom825 Dec 12, 2024
a9dfb40
Update images.txt
sxtom825 Dec 12, 2024
4573884
Update images.txt
sxtom825 Dec 12, 2024
a7ec248
Update docker.yaml
sxtom825 Dec 12, 2024
0c32c5c
Update images.txt
sxtom825 Dec 12, 2024
81c33c4
Update docker.yaml
sxtom825 Dec 12, 2024
096a4f1
Update docker.yaml
sxtom825 Dec 12, 2024
3b1d46b
Update docker.yaml
sxtom825 Dec 12, 2024
adfdaaf
Update docker.yaml
sxtom825 Dec 12, 2024
b888eee
Update docker.yaml
sxtom825 Dec 12, 2024
bcbe622
Update docker.yaml
sxtom825 Dec 12, 2024
9062ce3
Update docker.yaml
sxtom825 Dec 12, 2024
c9ca3ed
Update images.txt
sxtom825 Dec 12, 2024
22b9349
Update docker.yaml
sxtom825 Dec 12, 2024
cb7df8d
Update docker.yaml
sxtom825 Dec 12, 2024
4435b46
Update docker.yaml
sxtom825 Dec 12, 2024
914745d
Update docker.yaml
sxtom825 Dec 12, 2024
706e8f2
Update docker.yaml
sxtom825 Dec 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
149 changes: 16 additions & 133 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,155 +3,38 @@ name: Docker
on:
workflow_dispatch:
push:
branches: [ main ]
branches:
- query
pull_request:
branches:
- query


env:
ALIYUN_REGISTRY: "${{ secrets.ALIYUN_REGISTRY }}"
ALIYUN_NAME_SPACE: "${{ secrets.ALIYUN_NAME_SPACE }}"
ALIYUN_REGISTRY_USER: "${{ secrets.ALIYUN_REGISTRY_USER }}"
ALIYUN_REGISTRY_PASSWORD: "${{ secrets.ALIYUN_REGISTRY_PASSWORD }}"


jobs:

build:
name: Pull
runs-on: ubuntu-latest


steps:
- name: Before freeing up disk space
run: |
echo "Before freeing up disk space"
echo "=============================================================================="
df -hT
echo "=============================================================================="

# 增加可用磁盘空间
- name: Maximize build space
uses: easimon/maximize-build-space@master
- name: Checkout repository
uses: actions/checkout@v3
with:

root-reserve-mb: 2048
swap-size-mb: 128
remove-dotnet: 'true'
remove-haskell: 'true'
# 如果空间还是不够用,可以把以下开启,清理出更多空间
# remove-android: 'true'
# remove-codeql: 'true'
build-mount-path: '/var/lib/docker/'

- name: Restart docker
run: sudo service docker restart

- name: Free up disk space complete
run: |
echo "Free up disk space complete"
echo "=============================================================================="
df -hT
echo "=============================================================================="

- name: Checkout Code
uses: actions/checkout@v4

- name: Docker Setup Buildx
uses: docker/setup-buildx-action@v3

- name: Build and push image Aliyun
run: |
docker login -u $ALIYUN_REGISTRY_USER -p $ALIYUN_REGISTRY_PASSWORD $ALIYUN_REGISTRY
# 数据预处理,判断镜像是否重名
declare -A duplicate_images
declare -A temp_map
while IFS= read -r line || [ -n "$line" ]; do
# 忽略空行与注释
[[ -z "$line" ]] && continue
if echo "$line" | grep -q '^\s*#'; then
continue
fi

# 获取镜像的完整名称,例如kasmweb/nginx:1.25.3(命名空间/镜像名:版本号)
image=$(echo "$line" | awk '{print $NF}')
# 将@sha256:等字符删除
image="${image%%@*}"
echo "image $image"
# 获取镜像名:版本号 例如nginx:1.25.3
image_name_tag=$(echo "$image" | awk -F'/' '{print $NF}')
echo "image_name_tag $image_name_tag"
# 获取命名空间 例如kasmweb, 这里有种特殊情况 docker.io/nginx,把docker.io当成命名空间,也OK
name_space=$(echo "$image" | awk -F'/' '{if (NF==3) print $2; else if (NF==2) print $1; else print ""}')
echo "name_space: $name_space"
# 这里不要是空值影响判断
name_space="${name_space}_"
# 获取镜像名例如nginx
image_name=$(echo "$image_name_tag" | awk -F':' '{print $1}')
echo "image_name: $image_name"

# 如果镜像存在于数组中,则添加temp_map
if [[ -n "${temp_map[$image_name]}" ]]; then
# 如果temp_map已经存在镜像名,判断是不是同一命名空间
if [[ "${temp_map[$image_name]}" != $name_space ]]; then
echo "duplicate image name: $image_name"
duplicate_images[$image_name]="true"
fi
else
# 存镜像的命名空间
temp_map[$image_name]=$name_space
fi
done < images.txt

ref: 'query' # 指定要检出的分支名称

- name: query
run: |

while IFS= read -r line || [ -n "$line" ]; do
# 忽略空行与注释
[[ -z "$line" ]] && continue
if echo "$line" | grep -q '^\s*#'; then
continue
fi

echo "docker pull $line"
docker pull $line
platform=$(echo "$line" | awk -F'--platform[ =]' '{if (NF>1) print $2}' | awk '{print $1}')
echo "platform is $platform"
# 如果存在架构信息 将架构信息拼到镜像名称前面
if [ -z "$platform" ]; then
platform_prefix=""
else
platform_prefix="${platform//\//_}_"
fi
echo "platform_prefix is $platform_prefix"
# 获取镜像的完整名称,例如kasmweb/nginx:1.25.3(命名空间/镜像名:版本号)
image=$(echo "$line" | awk '{print $NF}')
docker search $line

# 获取 镜像名:版本号 例如nginx:1.25.3
image_name_tag=$(echo "$image" | awk -F'/' '{print $NF}')
# 获取命名空间 例如kasmweb 这里有种特殊情况 docker.io/nginx,把docker.io当成命名空间,也OK
name_space=$(echo "$image" | awk -F'/' '{if (NF==3) print $2; else if (NF==2) print $1; else print ""}')
# 获取镜像名例 例如nginx
image_name=$(echo "$image_name_tag" | awk -F':' '{print $1}')

name_space_prefix=""
# 如果镜像名重名
if [[ -n "${duplicate_images[$image_name]}" ]]; then
#如果命名空间非空,将命名空间加到前缀
if [[ -n "${name_space}" ]]; then
name_space_prefix="${name_space}_"
fi
fi

# 将@sha256:等字符删除
image_name_tag="${image_name_tag%%@*}"
new_image="$ALIYUN_REGISTRY/$ALIYUN_NAME_SPACE/$platform_prefix$name_space_prefix$image_name_tag"
echo "docker tag $image $new_image"
docker tag $image $new_image
echo "docker push $new_image"
docker push $new_image
echo "开始清理磁盘空间"
echo "=============================================================================="
df -hT
echo "=============================================================================="
docker rmi $image
docker rmi $new_image
echo "磁盘空间清理完毕"
echo "=============================================================================="
df -hT
echo "=============================================================================="
docker search --format "table {{.Name}}\t{{.StarCount}}\t{{.Description}}\t{{.IsOfficial}}" $line

done < images.txt
32 changes: 28 additions & 4 deletions images.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
nginx
#支持私库
k8s.gcr.io/kube-state-metrics/kube-state-metrics:v2.0.0
xhofe/alist:latest
#k8s.gcr.io/kube-state-metrics/kube-state-metrics:v2.0.0
#nginx:mainline-alpine
mysql
redis
#redis:7-alpine
#mariadb:10.5
#mailcow/unbound:1.23
#mailcow/clamd:1.66
#mailcow/rspamd:1.98
#mailcow/phpfpm:1.91.1
#mailcow/sogo:1.127.1
#mailcow/dovecot:2.2
#mailcow/postfix:1.77
#memcached:alpine
#mailcow/acme:1.90
#mailcow/netfilter:1.59
#mailcow/watchdog:2.05
#mailcow/dockerapi:2.09
#mailcow/solr:1.8.3
#mailcow/olefy:1.13
#mcuadros/ofelia
#robbertkl/ipv6nat
#registry
#halohub/halo:2.20
#ghcr.io/halo-dev/halo:2.20
#postgres:17.2
#支持指定架构
--platform=linux/arm64 xiaoyaliu/alist

#--platform=linux/arm64 xiaoyaliu/alist