Browse Source

chore: synced local './' with remote 'docker/'

pull/87/head
dgibbs64 7 months ago
parent
commit
79f6cc5f47
  1. 4
      .devcontainer/devcontainer.json
  2. 5
      .github/workflows/action-dockerhub-description.yml

4
.devcontainer/devcontainer.json

@ -2,7 +2,9 @@
"name": "Docker Dev Container", "name": "Docker Dev Container",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu", "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": { "features": {
"ghcr.io/devcontainers-community/npm-features/prettier:1": {}, "ghcr.io/devcontainers-community/npm-features/prettier:1": {
"plugins": "prettier-plugin-sh prettier-plugin-jinja-template"
},
"ghcr.io/devcontainers-extra/features/actionlint:1": {}, "ghcr.io/devcontainers-extra/features/actionlint:1": {},
"ghcr.io/devcontainers-extra/features/checkov:1": {}, "ghcr.io/devcontainers-extra/features/checkov:1": {},
"ghcr.io/devcontainers-extra/features/markdownlint-cli:1": {}, "ghcr.io/devcontainers-extra/features/markdownlint-cli:1": {},

5
.github/workflows/action-dockerhub-description.yml

@ -1,4 +1,5 @@
name: Update Docker Hub Description name: Update Docker Hub Description
on: on:
workflow_dispatch: workflow_dispatch:
push: push:
@ -18,9 +19,11 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v5 uses: actions/checkout@v5
with:
persist-credentials: false
- name: Docker Hub Description - name: Docker Hub Description
uses: peter-evans/dockerhub-description@v4 uses: peter-evans/dockerhub-description@v5
with: with:
username: ${{ secrets.DOCKER_HUB_USERNAME }} username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

Loading…
Cancel
Save