-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: dockerhub sync images workflow
- Loading branch information
1 parent
25c8a2e
commit 24f5299
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 |