mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
commit
e1a10350ee
3 changed files with 100 additions and 3 deletions
|
@ -28,6 +28,7 @@ ___
|
||||||
* [Export image to Docker](docs/advanced/export-docker.md)
|
* [Export image to Docker](docs/advanced/export-docker.md)
|
||||||
* [Share built image between jobs](docs/advanced/share-image-jobs.md)
|
* [Share built image between jobs](docs/advanced/share-image-jobs.md)
|
||||||
* [Test your image before pushing it](docs/advanced/test-before-push.md)
|
* [Test your image before pushing it](docs/advanced/test-before-push.md)
|
||||||
|
* [Named contexts](docs/advanced/named-contexts.md)
|
||||||
* [Handle tags and labels](docs/advanced/tags-labels.md)
|
* [Handle tags and labels](docs/advanced/tags-labels.md)
|
||||||
* [Update DockerHub repo description](docs/advanced/dockerhub-desc.md)
|
* [Update DockerHub repo description](docs/advanced/dockerhub-desc.md)
|
||||||
* [Customizing](#customizing)
|
* [Customizing](#customizing)
|
||||||
|
@ -188,6 +189,7 @@ jobs:
|
||||||
* [Export image to Docker](docs/advanced/export-docker.md)
|
* [Export image to Docker](docs/advanced/export-docker.md)
|
||||||
* [Share built image between jobs](docs/advanced/share-image-jobs.md)
|
* [Share built image between jobs](docs/advanced/share-image-jobs.md)
|
||||||
* [Test your image before pushing it](docs/advanced/test-before-push.md)
|
* [Test your image before pushing it](docs/advanced/test-before-push.md)
|
||||||
|
* [Named contexts](docs/advanced/named-contexts.md)
|
||||||
* [Handle tags and labels](docs/advanced/tags-labels.md)
|
* [Handle tags and labels](docs/advanced/tags-labels.md)
|
||||||
* [Update DockerHub repo description](docs/advanced/dockerhub-desc.md)
|
* [Update DockerHub repo description](docs/advanced/dockerhub-desc.md)
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Export image to Docker
|
# 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
|
You may want your build result to be available in the Docker client through
|
||||||
in another step of your workflow:
|
`docker images` to be able to use it in another step of your workflow:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
name: ci
|
name: ci
|
||||||
|
|
95
docs/advanced/named-contexts.md
Normal file
95
docs/advanced/named-contexts.md
Normal file
|
@ -0,0 +1,95 @@
|
||||||
|
# Named contexts
|
||||||
|
|
||||||
|
You can define [additional build contexts](https://docs.docker.com/engine/reference/commandline/buildx_build/#build-context)
|
||||||
|
that can be accessed in your Dockerfile with `FROM name` or `--from=name`. When
|
||||||
|
Dockerfile defines a stage with the same name it is overwritten.
|
||||||
|
|
||||||
|
This can be useful with GitHub Actions to reuse results from other builds or
|
||||||
|
pin an image to a spcific tag in your workflow.
|
||||||
|
|
||||||
|
## Pin image to a specific tag
|
||||||
|
|
||||||
|
Replace `alpine:latest` with a pinned one:
|
||||||
|
|
||||||
|
```dockerfile
|
||||||
|
# syntax=docker/dockerfile:1
|
||||||
|
FROM alpine
|
||||||
|
RUN echo "Hello World"
|
||||||
|
```
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
name: ci
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'main'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
-
|
||||||
|
name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v2
|
||||||
|
-
|
||||||
|
name: Build
|
||||||
|
uses: docker/build-push-action@v3
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
build-contexts: |
|
||||||
|
alpine=docker-image://alpine:3.16
|
||||||
|
tags: myimage:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage of the built image in other build steps
|
||||||
|
|
||||||
|
By default, the [`setup-buildx` action](https://github.com/docker/setup-buildx-action#about)
|
||||||
|
uses `docker-container` as a build driver, so built Docker images are not
|
||||||
|
available in the builder container.
|
||||||
|
|
||||||
|
With named contexts you can reuse the built image:
|
||||||
|
|
||||||
|
```dockerfile
|
||||||
|
# syntax=docker/dockerfile:1
|
||||||
|
FROM alpine
|
||||||
|
RUN echo "Hello World"
|
||||||
|
```
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
name: ci
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'main'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
-
|
||||||
|
name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v2
|
||||||
|
-
|
||||||
|
name: Build base image
|
||||||
|
uses: docker/build-push-action@v3
|
||||||
|
with:
|
||||||
|
context: base
|
||||||
|
load: true
|
||||||
|
tags: my-base-image:latest
|
||||||
|
-
|
||||||
|
name: Build
|
||||||
|
uses: docker/build-push-action@v3
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
build-contexts: |
|
||||||
|
alpine=docker-image://my-base-image:latest
|
||||||
|
tags: myimage:latest
|
||||||
|
```
|
Loading…
Reference in a new issue