Skip to content
This repository was archived by the owner on Jul 18, 2024. It is now read-only.

Commit 9cfa61e

Browse files
authored
Merge pull request #105 from IBM/docs_nov
Add details on resolving vulnerabilities.
2 parents 2f1255c + c4e3138 commit 9cfa61e

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ See the Container Service Kubernetes and IBM Cloud services (MySQL, Redis, Memca
3030
See the Docker container build and Kubernetes deployment [instructions](docs/DEPLOY-CONTAINERS.md).
3131

3232
### Ongoing development and operations with GitHub commits
33-
See the ongoing development [instructions](docs/ONGOING-DEVELOPMENT.md). And the work in progress DevOps [pipeline docs](docs/PIPELINE-SETUP.md).
33+
See the ongoing development [instructions](docs/ONGOING-DEVELOPMENT.md). And the work in progress DevOps [pipeline docs](docs/PIPELINE-SETUP.md). This shows how container images are rebuilt and how to address security issues detected by the IBM Vulnerability Advisor.
3434

3535
### Synchronizing data from production back to staging
3636
There are two [synchronization scripts](docs/SYNCHRONIZING-DATA.md) that can be invoked to bring user generated changes to files or data from production back into the staging environment. You can also execute other scripts inside the containers as well.

docs/ONGOING-DEVELOPMENT.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,17 @@ Push updates to the `config` directory. The pipeline will detect changes and ini
66

77
## Updating the Drupal and code version
88
Push updates to the `code` directory. The pipeline will detect changes and initiate a custom image rebuild.
9+
10+
## Addressing security issues with Vulnerability Advisor
11+
As container images are built and pushed to the IBM Cloud Container Registry, they are automatically scanned by the Vulnerability Advisor.
12+
13+
You can see whether there are any vulnerabilities in your images by listing the images:
14+
```bash
15+
bx cr images
16+
```
17+
18+
If any of them are listed as `Vulnerable` you can then see the specific issues with:
19+
20+
```bash
21+
bx cr va $IMAGE_NAME
22+
```

0 commit comments

Comments
 (0)