Skip to content

Update readme

Update readme #2

Workflow file for this run

name: Build and Push Redis Image
on:
push:
branches:
- redis
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- 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
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: pbdco/aws-spotter:redis
cache-from: type=registry,ref=pbdco/aws-spotter:redis
cache-to: type=inline