Skip to content

Add minio to dev setup #7

Add minio to dev setup

Add minio to dev setup #7

Workflow file for this run

name: images
on:
push:
branches:
- 'main'
release:
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ github.token }}
-
name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ghcr.io/openflowlabs/oxifed/identd:${{ github.ref_name }}
file: crates/identd/Dockerfile
-
name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ghcr.io/openflowlabs/oxifed/domainservd:${{ github.ref_name }}
file: crates/domainservd/Dockerfile