Skip to content

Commit c794bbe

Browse files
authored
Merge branch 'main' into ENGDOCS-2329
2 parents 3b27787 + 3a782c9 commit c794bbe

File tree

425 files changed

+10358
-5258
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

425 files changed

+10358
-5258
lines changed

.github/CODEOWNERS

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,16 @@
1515

1616
/content/manuals/extensions-sdk/ @aevesdocker
1717

18-
/content/manuals/scout/ @dvdksn
18+
/content/manuals/scout/ @craig-osterhout
1919

2020
/content/manuals/docker-hub/ @craig-osterhout
2121

2222
/content/manuals/engine/ @dvdksn
2323

24+
/content/reference/api/engine/ @dvdksn
25+
26+
/content/reference/cli/ @dvdksn
27+
2428
/content/manuals/subscription/ @sarahsanders-docker
2529

2630
/content/manuals/security/ @aevesdocker
@@ -29,7 +33,7 @@
2933

3034
/content/manuals/docker-hub/official_images/ @craig-osterhout
3135

32-
/content/manuals/registry/ @dvdksn
36+
/content/manuals/registry/ @craig-osterhout
3337

3438
/content/manuals/admin/ @sarahsanders-docker
3539

@@ -38,3 +42,5 @@
3842
/content/manuals/accounts/ @sarahsanders-docker
3943

4044
/hack @dvdksn
45+
46+
/_vendor @dvdksn

.github/workflows/build.yml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,27 @@ on:
1111
- main
1212
pull_request:
1313

14+
env:
15+
# Use edge release of buildx (latest RC, fallback to latest stable)
16+
SETUP_BUILDX_VERSION: edge
17+
SETUP_BUILDKIT_IMAGE: "moby/buildkit:latest"
18+
1419
permissions:
1520
contents: read # to fetch code (actions/checkout)
1621

1722
jobs:
1823
releaser:
1924
runs-on: ubuntu-24.04
2025
steps:
21-
-
22-
name: Checkout
23-
uses: actions/checkout@v4
2426
-
2527
name: Set up Docker Buildx
2628
uses: docker/setup-buildx-action@v3
29+
with:
30+
version: ${{ env.SETUP_BUILDX_VERSION }}
31+
driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }}
2732
-
2833
name: Build
29-
uses: docker/bake-action@v5
34+
uses: docker/bake-action@v6
3035
with:
3136
files: |
3237
docker-bake.hcl
@@ -48,8 +53,9 @@ jobs:
4853
uses: docker/setup-buildx-action@v3
4954
-
5055
name: Build
51-
uses: docker/bake-action@v5
56+
uses: docker/bake-action@v6
5257
with:
58+
source: .
5359
files: |
5460
docker-bake.hcl
5561
targets: release
@@ -58,8 +64,9 @@ jobs:
5864
*.cache-to=type=gha,scope=build,mode=max
5965
-
6066
name: Check Cloudfront config
61-
uses: docker/bake-action@v5
67+
uses: docker/bake-action@v6
6268
with:
69+
source: .
6370
targets: aws-cloudfront-update
6471
env:
6572
DRY_RUN: true
@@ -91,20 +98,18 @@ jobs:
9198
- dockerfile-lint
9299
- path-warnings
93100
steps:
94-
-
95-
name: Checkout
96-
uses: actions/checkout@v4
97101
-
98102
name: Set up Docker Buildx
99103
uses: docker/setup-buildx-action@v3
100104
-
101105
name: Validate
102-
uses: docker/bake-action@v5
106+
uses: docker/bake-action@v6
103107
with:
104108
files: |
105109
docker-bake.hcl
106110
targets: ${{ matrix.target }}
107111
set: |
112+
*.args.BUILDKIT_CONTEXT_KEEP_GIT_DIR=1
108113
*.cache-to=type=gha,scope=validate-${{ matrix.target }},mode=max
109114
*.cache-from=type=gha,scope=validate-${{ matrix.target }}
110115
*.cache-from=type=gha,scope=build

.github/workflows/deploy.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ on:
1212
- main
1313
- published
1414

15+
env:
16+
# Use edge release of buildx (latest RC, fallback to latest stable)
17+
SETUP_BUILDX_VERSION: edge
18+
SETUP_BUILDKIT_IMAGE: "moby/buildkit:latest"
19+
1520
# these permissions are needed to interact with GitHub's OIDC Token endpoint.
1621
permissions:
1722
id-token: write
@@ -80,10 +85,14 @@ jobs:
8085
-
8186
name: Set up Docker Buildx
8287
uses: docker/setup-buildx-action@v3
88+
with:
89+
version: ${{ env.SETUP_BUILDX_VERSION }}
90+
driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }}
8391
-
8492
name: Build website
85-
uses: docker/bake-action@v5
93+
uses: docker/bake-action@v6
8694
with:
95+
source: .
8796
files: |
8897
docker-bake.hcl
8998
targets: release
@@ -119,8 +128,9 @@ jobs:
119128
-
120129
name: Update S3 config
121130
if: ${{ env.DOCS_S3_BUCKET != '' && env.DOCS_S3_CONFIG != '' }}
122-
uses: docker/bake-action@v5
131+
uses: docker/bake-action@v6
123132
with:
133+
source: .
124134
files: |
125135
docker-bake.hcl
126136
targets: aws-s3-update-config
@@ -133,8 +143,9 @@ jobs:
133143
-
134144
name: Update Cloudfront config
135145
if: ${{ env.DOCS_CLOUDFRONT_ID != '' }}
136-
uses: docker/bake-action@v5
146+
uses: docker/bake-action@v6
137147
with:
148+
source: .
138149
files: |
139150
docker-bake.hcl
140151
targets: aws-cloudfront-update

.github/workflows/merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
git fetch origin main:main
2525
git reset --hard main
2626
- name: Create Pull Request
27-
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f
27+
uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f
2828
with:
2929
delete-branch: false
3030
branch: published-update

.github/workflows/validate-upstream.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ on:
2323
type: boolean
2424
required: false
2525

26+
env:
27+
# Use edge release of buildx (latest RC, fallback to latest stable)
28+
SETUP_BUILDX_VERSION: edge
29+
SETUP_BUILDKIT_IMAGE: "moby/buildkit:latest"
30+
2631
jobs:
2732
run:
2833
runs-on: ubuntu-24.04
@@ -80,10 +85,14 @@ jobs:
8085
-
8186
name: Set up Docker Buildx
8287
uses: docker/setup-buildx-action@v3
88+
with:
89+
version: ${{ env.SETUP_BUILDX_VERSION }}
90+
driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }}
8391
-
8492
name: Validate
85-
uses: docker/bake-action@v5
93+
uses: docker/bake-action@v6
8694
with:
95+
source: .
8796
files: |
8897
docker-bake.hcl
8998
targets: validate-upstream

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# syntax=docker/dockerfile:1
22
# check=skip=InvalidBaseImagePlatform
33

4-
ARG ALPINE_VERSION=3.20
4+
ARG ALPINE_VERSION=3.21
55
ARG GO_VERSION=1.23
66
ARG HTMLTEST_VERSION=0.17.0
7-
ARG HUGO_VERSION=0.139.0
7+
ARG HUGO_VERSION=0.141.0
88
ARG NODE_VERSION=22
9-
ARG PAGEFIND_VERSION=1.1.1
9+
ARG PAGEFIND_VERSION=1.3.0
1010

1111
# base defines the generic base stage
1212
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS base

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ contribute, see [CONTRIBUTING.md](CONTRIBUTING.md).
4949

5050
## Copyright and license
5151

52-
Copyright 2013-2024 Docker, Inc., released under the <a href="https://github.com/docker/docs/blob/main/LICENSE">Apache 2.0 license</a> .
52+
Copyright 2013-2025 Docker, Inc., released under the <a href="https://github.com/docker/docs/blob/main/LICENSE">Apache 2.0 license</a> .

_vale/Docker/Acronyms.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,30 @@ level: warning
55
ignorecase: false
66
# Ensures that the existence of 'first' implies the existence of 'second'.
77
first: '\b([A-Z]{2,5})\b'
8-
second: '(?:\b[A-Z][a-z]+ )+\(([A-Z]{2,5})\)'
8+
second: '(?:\b[A-Z][a-z]+ )+\(([A-Z]{2,5})s?\)'
99
# ... with the exception of these:
1010
exceptions:
1111
- AGPL
12+
- AI
1213
- API
1314
- ARM
1415
- ASP
1516
- AUFS
1617
- AWS
1718
- BIOS
19+
- BPF
20+
- BSD
21+
- CFS
1822
- CI
23+
- CIDR
1924
- CISA
2025
- CLI
2126
- CNCF
2227
- CORS
2328
- CPU
2429
- CSS
2530
- CSV
31+
- CUDA
2632
- CVE
2733
- DCT
2834
- DEBUG
@@ -35,7 +41,9 @@ exceptions:
3541
- ECI
3642
- ELK
3743
- FAQ
44+
- FPM
3845
- FUSE
46+
- GB
3947
- GCC
4048
- GDB
4149
- GET
@@ -52,9 +60,12 @@ exceptions:
5260
- HTTP
5361
- HTTPS
5462
- IAM
63+
- IBM
5564
- ID
5665
- IDE
5766
- IP
67+
- IPAM
68+
- IPC
5869
- IT
5970
- JAR
6071
- JIT
@@ -66,18 +77,23 @@ exceptions:
6677
- MAC
6778
- MDM
6879
- MDN
80+
- MSI
6981
- NAT
7082
- NET
7183
- NFS
7284
- NOTE
85+
- NTFS
7386
- NTLM
87+
- NUMA
7488
- NVDA
7589
- OCI
7690
- OS
91+
- OSI
7792
- OSS
7893
- PATH
7994
- PDF
8095
- PEM
96+
- PID
8197
- PHP
8298
- POSIX
8399
- POST
@@ -86,6 +102,7 @@ exceptions:
86102
- RAM
87103
- REPL
88104
- REST
105+
- RFC
89106
- RHEL
90107
- RPM
91108
- RSA
@@ -120,13 +137,16 @@ exceptions:
120137
- USB
121138
- USD
122139
- UTF
140+
- UTS
123141
- UUID
124142
- VAT
143+
- VIP
125144
- VLAN
126145
- VM
127146
- VPN
128147
- WSL
129148
- XML
130149
- XSS
131150
- YAML
151+
- ZFS
132152
- ZIP

0 commit comments

Comments
 (0)