Skip to content

Commit

Permalink
Updating pointer to latest blast docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
skchronicles committed Nov 28, 2023
1 parent a78a4af commit c3e1588
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion config/containers.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"images": {
"fastqvalidator": "docker://nciccbr/ccbr_fastqvalidator:v0.1.0",
"metavirs": "docker://skchronicles/metavirs:v0.1.0",
"blast": "docker://skchronicles/blast:v0.1.0"
"blast": "docker://skchronicles/blast:v0.2.0"
}
}
12 changes: 6 additions & 6 deletions docker/blast/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ Directly below are instructions for building an image using the provided Dockerf
docker image ls

# Build from Dockerfile
docker build --no-cache -f Dockerfile --tag=blast:v0.1.0 .
docker build --no-cache -f Dockerfile --tag=blast:v0.2.0 .

# Testing, take a peek inside
docker run -ti blast:v0.1.0 /bin/bash
docker run -ti blast:v0.2.0 /bin/bash

# Updating Tag before pushing to DockerHub
docker tag blast:v0.1.0 skchronicles/blast:v0.1.0
docker tag blast:v0.1.0 skchronicles/blast # latest
docker tag blast:v0.2.0 skchronicles/blast:v0.2.0
docker tag blast:v0.2.0 skchronicles/blast # latest

# Check out new tag(s)
docker image ls

# Push new tagged image to DockerHub
docker push skchronicles/blast:v0.1.0
docker push skchronicles/blast:v0.2.0
docker push skchronicles/blast:latest
```

Expand All @@ -29,7 +29,7 @@ docker push skchronicles/blast:latest
Scan your image for known vulnerabilities:

```bash
docker scan blast:v0.1.0
docker scan blast:v0.2.0
```

> **Please Note**: Any references to `skchronicles` should be replaced your username if you would also like to push the image to a non-org account.

0 comments on commit c3e1588

Please sign in to comment.