Skip to content

Commit

Permalink
一旦戻す
Browse files Browse the repository at this point in the history
  • Loading branch information
yuito-it committed Aug 1, 2024
1 parent 8409c7a commit 122bb78
Showing 1 changed file with 30 additions and 29 deletions.
59 changes: 30 additions & 29 deletions .github/workflows/docker-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,37 +6,38 @@ on:
- test

jobs:
push_to_registries:
name: Push Docker image to multiple registries
build-and-push:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
attestations: write
id-token: write
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Checkout repository
uses: actions/checkout@v2

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: |
${{ secrets.K8S_DOCKER_REGISTHOST }}/${{ github.repository }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Build and push Docker images
id: push
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: enable
run: |
SW_JSON=""
SW_JSON="$(sudo cat /etc/docker/daemon.json | jq '.+{ "insecure-registries":["${{ secrets.K8S_DOCKER_REGISTHOST }}"],"max-concurrent-uploads": 1,"debug":true }')"
echo "${SW_JSON}" | sudo bash -c 'cat -- > /etc/docker/daemon.json'
sudo cat /etc/docker/daemon.json
sudo systemctl restart docker || sudo journalctl -xeu docker.service
echo ---
docker info
echo ---
docker image ls
echo ---
sudo systemctl status docker
shell: bash
- name: Check Docker status
run: |
export DOCKER_CLIENT_TIMEOUT=18000
export COMPOSE_HTTP_TIMEOUT=240
sudo systemctl status docker.service
sudo journalctl -xeu docker.service
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v1
with:
subject-name: ${{ secrets.K8S_DOCKER_REGISTHOST }}/mediawiki
subject-digest: ${{ steps.push.outputs.digest }}
push-to-registry: true
- name: Build Docker image
run: docker build -t ${{ secrets.K8S_DOCKER_REGISTHOST }}/mediawiki:latest .

- name: Push Docker image
run: docker push ${{ secrets.K8S_DOCKER_REGISTHOST }}/mediawiki:latest

0 comments on commit 122bb78

Please sign in to comment.