Fettling.
This commit is contained in:
parent
5b7fd55cbc
commit
933d29cae0
3 changed files with 8 additions and 3 deletions
2
.github/workflows/minio.yml
vendored
2
.github/workflows/minio.yml
vendored
|
@ -23,7 +23,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- uses: docker/setup-qemu-action@v3
|
- uses: docker/setup-qemu-action@v3
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,10 @@ runtimes:
|
||||||
- python@3.10.8
|
- python@3.10.8
|
||||||
# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
|
# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
|
||||||
lint:
|
lint:
|
||||||
|
disabled:
|
||||||
|
- trufflehog # Trufflehog duplicates gitleaks functionality.
|
||||||
|
- terrascan
|
||||||
|
- trivy
|
||||||
enabled:
|
enabled:
|
||||||
- gitleaks@8.18.2
|
- gitleaks@8.18.2
|
||||||
- markdownlint@0.40.0
|
- markdownlint@0.40.0
|
||||||
|
@ -25,8 +29,6 @@ lint:
|
||||||
- checkov@3.2.92
|
- checkov@3.2.92
|
||||||
- git-diff-check
|
- git-diff-check
|
||||||
- prettier@3.2.5
|
- prettier@3.2.5
|
||||||
- trivy@0.51.1
|
|
||||||
- trufflehog@3.76.2
|
|
||||||
- yamllint@1.35.1
|
- yamllint@1.35.1
|
||||||
definitions:
|
definitions:
|
||||||
- name: markdownlint
|
- name: markdownlint
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
FROM minio/minio
|
FROM minio/minio
|
||||||
|
LABEL maintainer="Matthew Baggett <matthew@baggett.me>" \
|
||||||
|
org.label-schema.vcs-url="https://github.com/benzine-framework/docker-minio" \
|
||||||
|
org.opencontainers.image.source="https://github.com/benzine-framework/docker-minio"
|
||||||
HEALTHCHECK --interval=5s --timeout=3s --start-period=0s --retries=5 \
|
HEALTHCHECK --interval=5s --timeout=3s --start-period=0s --retries=5 \
|
||||||
CMD mc ping local -c 1 -q
|
CMD mc ping local -c 1 -q
|
||||||
CMD ["server", "--console-address", ":9001", "/data"]
|
CMD ["server", "--console-address", ":9001", "/data"]
|
||||||
|
|
Loading…
Reference in a new issue