-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (46 loc) · 1.55 KB
/
sync_dockerhub_images.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Sync DockerHub images to GHCR
on:
workflow_dispatch: # Permet de lancer manuellement
schedule:
- cron: '0 0 * * 0' # Exécution hebdomadaire le dimanche à minuit
jobs:
sync-images:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
#- name: Login to DockerHub
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Sync Images
env:
IMAGES: |
ollama/ollama
traefik:v3.2
run: |
# Lecture de la liste des images
echo "$IMAGES" | while read image; do
if [ ! -z "$image" ]; then
echo "Processing $image"
# Pull de l'image depuis DockerHub
docker pull "$image"
# Préparation du nom pour GHCR
GHCR_IMAGE="ghcr.io/${GITHUB_REPOSITORY,,}/${image}"
# Tag pour GHCR
docker tag "$image" "$GHCR_IMAGE"
# Push vers GHCR
docker push "$GHCR_IMAGE"
echo "Successfully synced $image to $GHCR_IMAGE"
fi
done