feat: cockroachdb

This commit is contained in:
Reinaldy Rafli 2023-03-04 10:50:52 +07:00
parent ec47b0033d
commit e07c7d25af
Signed by: aldy505
GPG Key ID: 1DAB793F100A560A
2 changed files with 53 additions and 0 deletions

50
.github/workflows/cockroachdb.yml vendored Normal file
View File

@ -0,0 +1,50 @@
name: CockroachDB
on:
push:
branches:
- master
env:
REGISTRY: ghcr.io
IMAGE_NAME: aldy505/cockroachdb-ci
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 300
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
flavor: |
latest=true
tags: |
type=sha
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: "{{defaultContext}}:cockroachdb"
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

3
cockroachdb/Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM cockroachdb/cockroach:v22.2.6
CMD [ "start-single-node", "--insecure", "--accept-sql-without-tls" ]