Skip to content

Commit cb81803

Browse files
Merge branch 'main' into feat/update-node-js-guide
2 parents 771b845 + 831fb59 commit cb81803

File tree

567 files changed

+31423
-5881
lines changed

Some content is hidden

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

567 files changed

+31423
-5881
lines changed

.github/CODEOWNERS

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# For more details, see https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
55

6-
/content/manuals/build/ @aevesdocker
6+
/content/manuals/build/ @dvdksn
77

88
/content/manuals/build-cloud/ @craig-osterhout
99

@@ -19,11 +19,11 @@
1919

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

22-
/content/manuals/engine/ @usha-mandya
22+
/content/manuals/engine/ @dvdksn
2323

24-
/content/reference/api/engine/ @usha-mandya
24+
/content/reference/api/engine/ @dvdksn
2525

26-
/content/reference/cli/ @usha-mandya
26+
/content/reference/cli/ @dvdksn
2727

2828
/content/manuals/subscription/ @sarahsanders-docker
2929

@@ -35,9 +35,9 @@
3535

3636
/content/manuals/accounts/ @sarahsanders-docker
3737

38-
/content/manuals/ai/ @usha-mandya
38+
/content/manuals/ai/ @dvdksn
3939

40-
/_vendor @sarahsanders-docker
40+
/_vendor @dvdksn
4141

4242
/content/manuals/offload/ @craig-osterhout
4343

.github/workflows/deploy.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ jobs:
3737
DOCS_URL="https://docs.docker.com"
3838
DOCS_AWS_IAM_ROLE="arn:aws:iam::710015040892:role/prod-docs-docs.docker.com-20220818202218674300000001"
3939
DOCS_S3_BUCKET="prod-docs-docs.docker.com"
40-
DOCS_S3_CONFIG="s3-config.json"
4140
DOCS_CLOUDFRONT_ID="E228TTN20HNU8F"
4241
DOCS_LAMBDA_FUNCTION_REDIRECTS="DockerDocsRedirectFunction-prod"
4342
DOCS_SLACK_MSG="Successfully deployed docs from the main branch. $DOCS_URL"
@@ -46,7 +45,6 @@ jobs:
4645
DOCS_URL="https://docs-labs.docker.com"
4746
DOCS_AWS_IAM_ROLE="arn:aws:iam::710015040892:role/labs-docs-docs.docker.com-20220818202218402500000001"
4847
DOCS_S3_BUCKET="labs-docs-docs.docker.com"
49-
DOCS_S3_CONFIG="s3-config.json"
5048
DOCS_CLOUDFRONT_ID="E1MYDYF65FW3HG"
5149
DOCS_LAMBDA_FUNCTION_REDIRECTS="DockerDocsRedirectFunction-labs"
5250
else
@@ -63,7 +61,6 @@ jobs:
6361
echo "DOCS_AWS_REGION=$DOCS_AWS_REGION" >> $GITHUB_ENV
6462
echo "DOCS_AWS_IAM_ROLE=$DOCS_AWS_IAM_ROLE" >> $GITHUB_ENV
6563
echo "DOCS_S3_BUCKET=$DOCS_S3_BUCKET" >> $GITHUB_ENV
66-
echo "DOCS_S3_CONFIG=$DOCS_S3_CONFIG" >> $GITHUB_ENV
6764
echo "DOCS_CLOUDFRONT_ID=$DOCS_CLOUDFRONT_ID" >> $GITHUB_ENV
6865
echo "DOCS_LAMBDA_FUNCTION_REDIRECTS=$DOCS_LAMBDA_FUNCTION_REDIRECTS" >> $GITHUB_ENV
6966
echo "DOCS_SLACK_MSG=$DOCS_SLACK_MSG" >> $GITHUB_ENV
@@ -100,7 +97,6 @@ jobs:
10097
if: ${{ env.DOCS_S3_BUCKET != '' }}
10198
run: |
10299
aws --region ${{ env.DOCS_AWS_REGION }} s3 sync \
103-
--acl public-read \
104100
--delete \
105101
--exclude "*" \
106102
--include "*.webp" \
@@ -109,23 +105,9 @@ jobs:
109105
--content-type="image/webp" \
110106
public s3://${{ env.DOCS_S3_BUCKET }}/
111107
aws --region ${{ env.DOCS_AWS_REGION }} s3 sync \
112-
--acl public-read \
113108
--delete \
114109
--exclude "*.webp" \
115110
public s3://${{ env.DOCS_S3_BUCKET }}/
116-
-
117-
name: Update S3 config
118-
if: ${{ env.DOCS_S3_BUCKET != '' && env.DOCS_S3_CONFIG != '' }}
119-
uses: docker/bake-action@v6
120-
with:
121-
source: .
122-
files: |
123-
docker-bake.hcl
124-
targets: aws-s3-update-config
125-
env:
126-
AWS_REGION: ${{ env.DOCS_AWS_REGION }}
127-
AWS_S3_BUCKET: ${{ env.DOCS_S3_BUCKET }}
128-
AWS_S3_CONFIG: ${{ env.DOCS_S3_CONFIG }}
129111
-
130112
name: Update Cloudfront config
131113
if: ${{ env.DOCS_CLOUDFRONT_ID != '' }}

.markdownlint.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313
"no-space-in-code": true,
1414
"no-space-in-links": true,
1515
"no-empty-links": true,
16-
"ol-prefix": {"style": "one_or_ordered"},
16+
"ol-prefix": { "style": "one_or_ordered" },
1717
"no-reversed-links": true,
1818
"reference-links-images": {
1919
"shortcut_syntax": false
2020
},
2121
"fenced-code-language": true,
2222
"table-pipe-style": true,
23-
"table-column-count": true
23+
"table-column-count": true,
24+
"descriptive-link-text": { "prohibited_texts": ["click here","here","link","more","learn more","find out more"]}
2425
}

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ update the CLI reference docs, refer to the corresponding repository:
115115
- [docker/cli](https://github.com/docker/cli)
116116
- [docker/buildx](https://github.com/docker/buildx)
117117
- [docker/compose](https://github.com/docker/compose)
118+
- [docker/model-runner](https://github.com/docker/model-runner)
118119

119120
Feel free to raise an issue on this repository if you're not sure how to
120121
proceed, and we'll help out.

Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,12 @@ RUN --mount=type=cache,target=/tmp/hugo_cache \
5353
hugo --gc --minify -e $HUGO_ENV -b $DOCS_URL
5454

5555
# lint lints markdown files
56-
FROM davidanson/markdownlint-cli2:v0.14.0 AS lint
57-
USER root
56+
FROM ghcr.io/igorshubovych/markdownlint-cli:v0.45.0 AS lint
5857
RUN --mount=type=bind,target=. \
59-
/usr/local/bin/markdownlint-cli2 \
58+
markdownlint \
6059
"content/**/*.md" \
61-
"#content/manuals/engine/release-notes/*.md" \
62-
"#content/manuals/desktop/previous-versions/*.md"
60+
--ignore "content/manuals/engine/release-notes/*.md" \
61+
--ignore "content/manuals/desktop/previous-versions/*.md"
6362

6463
# test validates HTML output and checks for broken links
6564
FROM wjdp/htmltest:v${HTMLTEST_VERSION} AS test

_vale/config/vocabularies/Docker/accept.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
(?i)[A-Z]{2,}'?s
2-
2+
jq
3+
ripgrep
4+
sandboxing
35
Adreno
46
Aleksandrov
57
Amazon
68
Anchore
79
Apple
810
Artifactory
11+
armhf
912
auditable
1013
autolock
1114
Azure
@@ -36,6 +39,7 @@ config
3639
containerd
3740
Couchbase
3841
CouchDB
42+
Crowdstrike
3943
datacenter
4044
Datadog
4145
Ddosify
@@ -72,6 +76,7 @@ EPERM
7276
ESXi
7377
Ethernet
7478
exploitability
79+
[Ff]ailover
7580
Fargate
7681
Fedora
7782
firewalld
@@ -154,6 +159,7 @@ PAT
154159
perl
155160
pgAdmin
156161
PKG
162+
plaintext
157163
plist
158164
Postgres
159165
PowerShell
@@ -224,6 +230,7 @@ Zsh
224230
[Aa]gentic
225231
[Aa]utobuilds?
226232
[Aa]utotests?
233+
[Aa]utoscaling
227234
[Bb]uildx
228235
[Bb]uildpack(s)?
229236
[Bb]uildx
@@ -232,6 +239,7 @@ Zsh
232239
[Cc]onfigs
233240
[dD]eduplicate
234241
[Dd]ev
242+
[Dd]iscoverability
235243
[Dd]istroless
236244
[Ff]ilepaths?
237245
[Ff]iletypes?
@@ -269,6 +277,7 @@ Zsh
269277
[Ss]yscalls?
270278
[Ss]ysfs
271279
[Tt]eardown
280+
[Tt]echnographic
272281
[Tt]odo
273282
[Tt]oolchains?
274283
[Uu]narchived?

_vendor/github.com/docker/buildx/docs/bake-reference.md

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)