Skip to content

Commit 0370008

Browse files
authored
Merge pull request #241 from cisagov/improvement/fix_docker_case
Correct the case for mentions of Docker
2 parents 646c3bd + 4bff962 commit 0370008

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -399,12 +399,12 @@ jobs:
399399
# monitoring configuration *does not* require you to modify
400400
# this workflow.
401401
permissions_monitoring_config: ${{ vars.ACTIONS_PERMISSIONS_CONFIG }}
402-
- name: Download docker image artifact
402+
- name: Download Docker image artifact
403403
uses: actions/download-artifact@v4
404404
with:
405405
name: dist
406406
path: dist
407-
- name: Load docker image
407+
- name: Load Docker image
408408
run: docker load < dist/image.tar.gz
409409
- name: Run Trivy vulnerability scanner
410410
uses: aquasecurity/trivy-action@0.32.0
@@ -470,12 +470,12 @@ jobs:
470470
run: |
471471
python -m pip install --upgrade pip setuptools wheel
472472
pip install --upgrade --requirement requirements-test.txt
473-
- name: Download docker image artifact
473+
- name: Download Docker image artifact
474474
uses: actions/download-artifact@v4
475475
with:
476476
name: dist
477477
path: dist
478-
- name: Load docker image
478+
- name: Load Docker image
479479
run: docker load < dist/image.tar.gz
480480
- name: Run tests
481481
env:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ docker run cisagov/example:0.2.2+build.1
3737
services:
3838
example:
3939
environment:
40-
- ECHO_MESSAGE="Hello from docker compose"
40+
- ECHO_MESSAGE="Hello from Docker Compose"
4141
image: cisagov/example:0.2.2+build.1
4242
ports:
4343
- protocol: tcp
@@ -82,7 +82,7 @@ environment variables. See the
8282
services:
8383
example:
8484
environment:
85-
- ECHO_MESSAGE="Hello from docker compose"
85+
- ECHO_MESSAGE="Hello from Docker Compose"
8686
image: cisagov/example:0.2.2+build.1
8787
ports:
8888
- protocol: tcp

compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
context: .
1717
dockerfile: Dockerfile
1818
environment:
19-
- ECHO_MESSAGE=Hello World from docker compose!
19+
- ECHO_MESSAGE=Hello World from Docker Compose!
2020
image: cisagov/example
2121
init: true
2222
ports:

tests/container_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from semver import parse_version_info
1010

1111
ENV_VAR = "ECHO_MESSAGE"
12-
ENV_VAR_VAL = "Hello World from docker compose!"
12+
ENV_VAR_VAL = "Hello World from Docker Compose!"
1313
READY_MESSAGE = "This is a debug message"
1414
DIVISION_MESSAGE = "8 / 2 == 4.000000"
1515
SECRET_QUOTE = "Three may keep a secret, if two of them are dead." # nosec

0 commit comments

Comments
 (0)