1
0
Fork 0
mirror of https://github.com/docker/build-push-action.git synced 2025-04-03 21:50:08 +02:00
build-push-action/docs/advanced/export-docker.md

32 lines
660 B
Markdown
Raw Normal View History

# Export image to Docker
You may want your build result to be available in the Docker client through
`docker images` to be able to use it in another step of your workflow:
```yaml
name: ci
on:
push:
branches:
- 'main'
jobs:
docker:
runs-on: ubuntu-latest
steps:
2022-10-28 07:53:41 +11:00
- name: Checkout
uses: actions/checkout@v3
2022-10-28 07:53:41 +11:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
2022-10-28 07:53:41 +11:00
- name: Build
uses: docker/build-push-action@v3
with:
context: .
load: true
tags: myimage:latest
2022-10-28 07:53:41 +11:00
- name: Inspect
run: |
docker image inspect myimage:latest
```