Skip to content

Commit

Permalink
Merge pull request #21738 from docker/published-update
Browse files Browse the repository at this point in the history
publish updates from main
  • Loading branch information
aevesdocker authored Jan 9, 2025
2 parents 687b70d + 510a49c commit fcd25a0
Show file tree
Hide file tree
Showing 23 changed files with 391 additions and 391 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ jobs:
releaser:
runs-on: ubuntu-24.04
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand All @@ -34,7 +31,7 @@ jobs:
driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }}
-
name: Build
uses: docker/bake-action@v5
uses: docker/bake-action@v6
with:
files: |
docker-bake.hcl
Expand All @@ -56,8 +53,9 @@ jobs:
uses: docker/setup-buildx-action@v3
-
name: Build
uses: docker/bake-action@v5
uses: docker/bake-action@v6
with:
source: .
files: |
docker-bake.hcl
targets: release
Expand All @@ -66,8 +64,9 @@ jobs:
*.cache-to=type=gha,scope=build,mode=max
-
name: Check Cloudfront config
uses: docker/bake-action@v5
uses: docker/bake-action@v6
with:
source: .
targets: aws-cloudfront-update
env:
DRY_RUN: true
Expand Down Expand Up @@ -99,20 +98,18 @@ jobs:
- dockerfile-lint
- path-warnings
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Validate
uses: docker/bake-action@v5
uses: docker/bake-action@v6
with:
files: |
docker-bake.hcl
targets: ${{ matrix.target }}
set: |
*.args.BUILDKIT_CONTEXT_KEEP_GIT_DIR=1
*.cache-to=type=gha,scope=validate-${{ matrix.target }},mode=max
*.cache-from=type=gha,scope=validate-${{ matrix.target }}
*.cache-from=type=gha,scope=build
9 changes: 6 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ jobs:
driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }}
-
name: Build website
uses: docker/bake-action@v5
uses: docker/bake-action@v6
with:
source: .
files: |
docker-bake.hcl
targets: release
Expand Down Expand Up @@ -127,8 +128,9 @@ jobs:
-
name: Update S3 config
if: ${{ env.DOCS_S3_BUCKET != '' && env.DOCS_S3_CONFIG != '' }}
uses: docker/bake-action@v5
uses: docker/bake-action@v6
with:
source: .
files: |
docker-bake.hcl
targets: aws-s3-update-config
Expand All @@ -141,8 +143,9 @@ jobs:
-
name: Update Cloudfront config
if: ${{ env.DOCS_CLOUDFRONT_ID != '' }}
uses: docker/bake-action@v5
uses: docker/bake-action@v6
with:
source: .
files: |
docker-bake.hcl
targets: aws-cloudfront-update
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/validate-upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ jobs:
driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }}
-
name: Validate
uses: docker/bake-action@v5
uses: docker/bake-action@v6
with:
source: .
files: |
docker-bake.hcl
targets: validate-upstream
Expand Down
5 changes: 4 additions & 1 deletion _vale/config/vocabularies/Docker/accept.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ Amazon
Anchore
Apple
Artifactory
Autotest
Azure
Btrfs
BuildKit
Expand Down Expand Up @@ -100,6 +99,9 @@ Zsh
[Aa]nonymized?
[Aa]utobuild
[Aa]llowlist
[Aa]utobuilds?
[Aa]utotests?
[Bb]uildx
[Bb]uildpack(s)?
[Bb]uildx
[Cc]odenames?
Expand All @@ -126,6 +128,7 @@ Zsh
[Pp]roxied
[Pp]roxying
[Rr]eal-time
[Rr]egex(es)?
[Rr]untimes?
[Ss]andbox(ed)?
[Ss]eccomp
Expand Down
4 changes: 4 additions & 0 deletions content/manuals/admin/organization/activity-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ Refer to the following section for a list of events and their descriptions:

### Repository events

> [!NOTE]
>
> Event descriptions that include a user action can refer to a Docker username, personal access token (PAT) or organization access token (OAT). For example, if a user pushes a tag to a repository, the event would include the description: `<user-access-token>` pushed the tag to the repository.
| Event | Description |
|:------------------------------------------------------------------|:------------------------------------------------|
| Repository Created | Activities related to the creation of a new repository |
Expand Down
3 changes: 1 addition & 2 deletions content/manuals/build/bake/remote-definition.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,8 @@ and use the `cwd://` prefix for the metadata Bake file:

```yml
- name: Build
uses: docker/bake-action@v4
uses: docker/bake-action@v6
with:
source: "${{ github.server_url }}/${{ github.repository }}.git#${{ github.ref }}"
files: |
./docker-bake.hcl
cwd://${{ steps.meta.outputs.bake-file }}
Expand Down
9 changes: 3 additions & 6 deletions content/manuals/build/ci/github-actions/annotations.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,6 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand All @@ -91,12 +88,12 @@ jobs:
images: ${{ env.IMAGE_NAME }}

- name: Build
uses: docker/bake-action@v5
uses: docker/bake-action@v6
with:
files: |
./docker-bake.hcl
${{ steps.meta.outputs.bake-file-tags }}
${{ steps.meta.outputs.bake-file-annotations }}
cwd://${{ steps.meta.outputs.bake-file-tags }}
cwd://${{ steps.meta.outputs.bake-file-annotations }}
push: true
```
Expand Down
2 changes: 1 addition & 1 deletion content/manuals/build/ci/github-actions/build-summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ or [Docker Buildx Bake](https://github.com/marketplace/actions/docker-buildx-bak
GitHub Actions:

- `docker/build-push-action@v6`
- `docker/bake-action@v5`
- `docker/bake-action@v6`

To view the job summary, open the details page for the job in GitHub after the
job has finished. The summary is available for both failed and successful
Expand Down
7 changes: 2 additions & 5 deletions content/manuals/build/ci/github-actions/checks.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,6 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand All @@ -91,12 +88,12 @@ jobs:
uses: docker/setup-buildx-action@v3
- name: Validate build configuration
uses: docker/bake-action@v5
uses: docker/bake-action@v6
with:
targets: validate-build
- name: Build
uses: docker/bake-action@v5
uses: docker/bake-action@v6
with:
targets: build
push: true
Expand Down
7 changes: 2 additions & 5 deletions content/manuals/build/ci/github-actions/multi-platform.md
Original file line number Diff line number Diff line change
Expand Up @@ -350,9 +350,6 @@ jobs:
platform=${{ matrix.platform }}
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v4
- name: Download meta bake definition
uses: actions/download-artifact@v4
with:
Expand All @@ -373,11 +370,11 @@ jobs:
- name: Build
id: bake
uses: docker/bake-action@v5
uses: docker/bake-action@v6
with:
files: |
./docker-bake.hcl
/tmp/bake-meta.json
cwd:///tmp/bake-meta.json
targets: image
set: |
*.tags=
Expand Down
10 changes: 2 additions & 8 deletions content/manuals/build/ci/github-actions/reproducible-builds.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,11 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build
uses: docker/bake-action@v5
uses: docker/bake-action@v6
env:
SOURCE_DATE_EPOCH: 0
```
Expand Down Expand Up @@ -115,17 +112,14 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Get Git commit timestamps
run: echo "TIMESTAMP=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
- name: Build
uses: docker/bake-action@v5
uses: docker/bake-action@v6
env:
SOURCE_DATE_EPOCH: ${{ env.TIMESTAMP }}
```
Expand Down
5 changes: 1 addition & 4 deletions content/manuals/build/ci/github-actions/secrets.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,6 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up SSH
uses: MrSquaare/ssh-setup-action@2d028b70b5e397cf8314c6eaea229a6c3e34977a # v3.1.0
with:
Expand All @@ -209,7 +206,7 @@ jobs:
private-key-name: github-ppk
- name: Build
uses: docker/bake-action@v5
uses: docker/bake-action@v6
with:
set: |
*.ssh=default
Expand Down
12 changes: 12 additions & 0 deletions content/manuals/desktop/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ Docker Desktop versions older than 6 months from the latest release are not avai

Take a look at the [Docker Public Roadmap](https://github.com/orgs/docker/projects/51/views/1?filterQuery=) to see what's coming next.

## 4.37.2

{{< release-date date="2025-01-08" >}}

{{< desktop-install-v2 mac=true version="4.37.2" build_path="/TBD/" >}}

### Bug fixes and enhancements

#### For Mac

- Prevents a bug that caused Docker Desktop to not update `com.docker.vmnetd` or `com.docker.socket` to newer versions.

## 4.37.1

{{< release-date date="2024-12-17" >}}
Expand Down
4 changes: 1 addition & 3 deletions content/manuals/desktop/setup/install/linux/debian.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,9 @@ Once a new version for Docker Desktop is released, the Docker UI shows a notific
You need to download the new package each time you want to upgrade Docker Desktop and run:
```console
$ sudo apt-get install ./docker-desktop-<arch>.deb
$ sudo apt-get install ./docker-desktop-amd64.deb
```
Don't forget to substitute `<arch>` with the architecture you want.

## Next steps

- Explore [Docker's subscriptions](https://www.docker.com/pricing/) to see what Docker can offer you.
Expand Down
4 changes: 1 addition & 3 deletions content/manuals/desktop/setup/install/linux/fedora.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,9 @@ You need to first remove the previous version and then download the new package

```console
$ sudo dnf remove docker-desktop
$ sudo dnf install ./docker-desktop-<arch>.rpm
$ sudo dnf install ./docker-desktop-x86_64.rpm
```

Don't forget to substitute `<arch>` with the architecture you want.

## Next steps

- Explore [Docker's subscriptions](https://www.docker.com/pricing/) to see what Docker can offer you.
Expand Down
4 changes: 1 addition & 3 deletions content/manuals/desktop/setup/install/linux/ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,9 @@ Once a new version for Docker Desktop is released, the Docker UI shows a notific
You need to download the new package each time you want to upgrade Docker Desktop and run:
```console
$ sudo apt-get install ./docker-desktop-<arch>.deb
$ sudo apt-get install ./docker-desktop-amd64.deb
```
Don't forget to substitute `<arch>` with the architecture you want.

## Next steps

- Explore [Docker's subscriptions](https://www.docker.com/pricing/) to see what Docker can offer you.
Expand Down
Loading

0 comments on commit fcd25a0

Please sign in to comment.