Skip to content

Commit 5872802

Browse files
docs: Fix Docker image tag to latest
1 parent 4a1bc91 commit 5872802

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

DOCKER.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Project Status: **In Active Development**
2525
1. Copy the `.env.example` file into `.env`
2626
2. Update the configuration values, both `input` and `jira` values on the `.env` file
2727
3. Run Docker container using
28-
`docker run --network host -itd --env-file .env publish-sarif-to-jira:main`
28+
`docker run --network host -itd --env-file .env publish-sarif-to-jira:latest`
2929

3030
4. The Python script within the Docker container iterates through the SARIF files (files ending with `.sarif` extension or has the term `.sarif` in the filename) and creates JIRA Issues on your JIRA Cloud instance
3131

@@ -89,12 +89,12 @@ docker login
8989
```
9090

9191
```sh
92-
docker build --no-cache --progress=plain . -f Dockerfile -t publish-sarif-to-jira:main 2>&1 | tee build.log
92+
docker build --no-cache --progress=plain . -f Dockerfile -t publish-sarif-to-jira:latest 2>&1 | tee build.log
9393
```
9494

9595
```sh
9696
docker run --network host -itd \
9797
--env-file .env \
9898
-e LOG_LEVEL='DEBUG' \
99-
publish-sarif-to-jira:main
99+
publish-sarif-to-jira:latest
100100
```

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@ docker login
8484
```
8585

8686
```sh
87-
docker build --no-cache --progress=plain . -f Dockerfile -t publish-sarif-to-jira:main 2>&1 | tee build.log
87+
docker build --no-cache --progress=plain . -f Dockerfile -t publish-sarif-to-jira:latest 2>&1 | tee build.log
8888
```
8989

9090
```sh
9191
docker run --network host -itd \
9292
--env-file .env \
9393
-e LOG_LEVEL='DEBUG' \
94-
publish-sarif-to-jira:main
94+
publish-sarif-to-jira:latest
9595
```

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ branding:
4040
color: 'purple'
4141
runs:
4242
using: 'docker'
43-
image: 'georgedavisibexlabs/publish-sarif-to-jira:main'
43+
image: 'georgedavisibexlabs/publish-sarif-to-jira:latest'

0 commit comments

Comments
 (0)