docker_build_push #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docker_build_push | |
on: workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push for base image | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
file: ./base/Dockerfile | |
platforms: linux/amd64 | |
tags: tamago3keran/dotfiles:base | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Build and push for dotfiles image | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
file: ./dotfiles/Dockerfile | |
platforms: linux/amd64 | |
tags: tamago3keran/dotfiles:dotfiles | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Build and push for react image | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
file: ./react/Dockerfile | |
platforms: linux/amd64 | |
tags: tamago3keran/dotfiles:react | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Build and push for ruby image | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
file: ./ruby/Dockerfile | |
platforms: linux/amd64 | |
tags: tamago3keran/dotfiles:ruby | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Build and push for python image | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
file: ./python/Dockerfile | |
platforms: linux/amd64 | |
tags: tamago3keran/dotfiles:python | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |