Skip to content

Migrate from Docker to Podman#432

Closed
Copilot wants to merge 7 commits intomainfrom
copilot/update-docker-to-podman
Closed

Migrate from Docker to Podman#432
Copilot wants to merge 7 commits intomainfrom
copilot/update-docker-to-podman

Conversation

Copy link
Contributor

Copilot AI commented Jan 17, 2026

Replaces Docker with Podman as the container runtime across all workflows and scripts.

Changes

Scripts

  • preview.sh: docker runpodman run

GitHub Actions

  • .github/workflows/build.yml: docker runpodman run
  • .github/workflows/ci.yml:
    • Renamed docker-jobpodman-job
    • Replaced Docker GitHub Actions (docker/login-action, docker/metadata-action, docker/build-push-action) with native Podman CLI commands
    • Added Podman installation step via apt
    • Capture registry digest using podman push --digestfile for attestation support

Example

# Before
- uses: docker/build-push-action@v6
  with:
    push: true
    tags: ${{ steps.meta.outputs.tags }}

# After
- run: |
    podman build -t $REGISTRY/$IMAGE:latest .
    podman push --digestfile /tmp/digest.txt $REGISTRY/$IMAGE:latest

All existing functionality preserved: multi-tag builds, conditional push logic, and artifact attestation.

Original prompt

le projet utilise docker aujourd'hui, peux-tu passer a podman latest ?


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Copilot AI and others added 2 commits January 17, 2026 19:23
Co-authored-by: abernier <76580+abernier@users.noreply.github.com>
Co-authored-by: abernier <76580+abernier@users.noreply.github.com>
Copilot AI and others added 2 commits January 17, 2026 19:25
Co-authored-by: abernier <76580+abernier@users.noreply.github.com>
Co-authored-by: abernier <76580+abernier@users.noreply.github.com>
Copilot AI changed the title [WIP] Update project from Docker to Podman latest Migrate from Docker to Podman Jan 17, 2026
Copilot AI requested a review from abernier January 17, 2026 19:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants