Export to Docker (original) (raw)
This section
Open source
- Administer and maintain a swarm of Docker Engines
- Deploy a stack to a swarm
- Deploy services to a swarm
- Join nodes to a swarm
- Lock your swarm to protect its encryption key
- Manage nodes in a swarm
- Manage sensitive data with Docker secrets
- Manage swarm service networks
- Raft consensus in swarm mode
- Run Docker Engine in swarm mode
- Store configuration data using Docker Configs
- Swarm mode key concepts
- Use Swarm mode routing mesh
- Administer and maintain a swarm of Docker Engines
- Deprecated features
- Engine v28
- Engine v27
- Engine v26.1
- Engine v26.0
- Engine v25.0
- Engine v24.0
- Engine v23.0
- Engine v20.10
- Engine v19.03
- Engine v18.09
- Engine v18.06
- Engine v18.05
- Engine v18.04
- Engine v18.03
- Engine v18.02
- Engine v18.01
- Engine v17.12
- Engine v17.11
- Engine v17.10
- Engine v17.09
- Engine v17.07
- Engine v17.06
- Engine v17.05
- Engine v17.04
- Engine v17.03
- Prior releases
- Engine v28
- Build checksNew
- Annotations
* Attestations
* Build checks
* Build secrets
* Build summary
* BuildKit configuration
* Cache management
* Copy image between registries
* Export to Docker
* Local registry
* Multi-platform image
* Named contexts
* Push to multiple registries
* Reproducible builds
* Share image between jobs
* Tags and labels
* Test before push
* Update Docker Hub description
- Annotations
- Build release notes
AI
Products
- Quickstart
- Create
- Repository information
* Access
* * Tags
* Immutable tags
* Image Management
* Software artifacts
* Push images
* Move images
* Image security insights
* Webhooks
* * Set up
* Link accounts
* Automated repository tests
* Advanced options
* Manage autobuilds
* Troubleshoot
* * Docker Official Images
* Docker Verified Publisher Program
* Docker-Sponsored Open Source Program
* Insights and analytics
- Repository information
- Archive
- Delete
- Personal settings
- Create
- Service accounts
- Troubleshoot
- Release notes
Platform
Home / Manuals / Docker Build / CI / GitHub Actions / Export to Docker
Export to Docker with GitHub Actions
You may want your build result to be available in the Docker client throughdocker images
to be able to use it in another step of your workflow:
name: ci
on:
push:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build
uses: docker/build-push-action@v6
with:
load: true
tags: myimage:latest
- name: Inspect
run: |
docker image inspect myimage:latest