Skip to content

Commit

Permalink
Versioning Docker Container images
Browse files Browse the repository at this point in the history
  • Loading branch information
ubiratansoares committed May 20, 2024
1 parent 8ed024d commit 5cf6ac3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions foss/check-licenses/license-checker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

set -eo pipefail

# https://github.com/google/addlicense
readonly addlicense="ghcr.io/google/addlicense"
# https://github.com/google/addlicense/pkgs/container/addlicense
readonly addlicense="ghcr.io/google/addlicense:v1.1.0"

readonly target_folder="$1"
readonly sources="$2"
Expand Down
8 changes: 4 additions & 4 deletions quality/bash/bash-linter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

set -eo pipefail

# https://github.com/mvdan/sh
readonly shmft="docker.io/mvdan/shfmt:latest"
# https://hub.docker.com/r/mvdan/shfmt/tags
readonly shmft="mvdan/shfmt:v3.8.0-alpine"

#https://github.com/koalaman/shellcheck
readonly shellcheck="docker.io/koalaman/shellcheck-alpine:stable"
# https://hub.docker.com/r/koalaman/shellcheck-alpine/tags
readonly shellcheck="koalaman/shellcheck-alpine:v0.10.0"

readonly target_folder="$1"

Expand Down
8 changes: 4 additions & 4 deletions quality/markdown/markdown-linter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ set -eo pipefail

readonly target_folder="$1"

# https://github.com/igorshubovych/markdownlint-cli
readonly markdownlint="ghcr.io/igorshubovych/markdownlint-cli:latest"
# https://github.com/igorshubovych/markdownlint-cli/pkgs/container/markdownlint-cli
readonly markdownlint="ghcr.io/igorshubovych/markdownlint-cli:v0.39.0"

# https://github.com/lycheeverse/lychee
readonly lychee="lycheeverse/lychee:latest"
# https://hub.docker.com/r/lycheeverse/lychee/tags
readonly lychee="lycheeverse/lychee:0.14.3-alpine"

require_docker_daemon() {
if (! docker stats --no-stream >/dev/null); then
Expand Down

0 comments on commit 5cf6ac3

Please sign in to comment.