build-push-action
nocodb

build-push-action | nocodb | |
---|---|---|
39 | 140 | |
4,838 | 55,703 | |
1.3% | 1.6% | |
8.4 | 10.0 | |
about 2 months ago | about 5 hours ago | |
TypeScript | TypeScript | |
Apache License 2.0 | GNU Affero General Public License v3.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
build-push-action
-
Fix InvalidParameterValueException for AWS Lambda docker images built by GitHub Actions
Starting with version 4, docker/build-push-action builds images using the OCI format by default. OCI (Open Container Initiative) is the modern standard that is supported by AWS ECR. However, AWS Lambda does not support OCI image manifests. Lambda only accepts the older Docker v2 schema: application/vnd.docker.distribution.manifest.v2+json
-
Pull Request testing on Kubernetes: working with GitHub Actions and GKE
docker/build-push-action
- 1minDocker #13 - Push, build and dockerize with GitHub Actions
-
GitHub Linux ARM64 hosted runners now available for free in public repositories
Does build-push-action solve this? I haven’t used their multi-arch configs but I was under the impression that it was pretty smooth.
https://github.com/docker/build-push-action
-
How to Build Multi-Platform Executable Binaries in Node.js with SEA, Rollup, Docker, and GitHub
To publish images to Docker Hub, I use the docker/build-push-action@v6, where I specify:
-
GitHub Actions: Quickstart-Guide for every Developer!🚀
Docker Build and Publish:
-
Optimize Docker Builds with Cache Management in GitHub Actions
## Local Cache This method leverages local storage for caching Docker layers. The downside is that old cache entries aren’t deleted automatically, so the cache size might increase over time. A temporary fix involves moving and cleaning the cache after each build. ```yaml //".github/workflows/build.yml" name: Docker Build on: push: jobs: docker: runs-on: ubuntu-latest steps: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 // highlight-start - name: Cache Docker layers uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} restore-keys: | ${{ runner.os }}-buildx- // highlight-end - name: Login to Docker Hub uses: docker/login-action@v3 with: username: ${{ vars.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} // highlight-start - name: Build and push uses: docker/build-push-action@v6 with: push: true tags: user/app:latest cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max // highlight-end - # Temp fix # https://github.com/docker/build-push-action/issues/252 # https://github.com/moby/buildkit/issues/1896 name: Move cache run: | rm -rf /tmp/.buildx-cache mv /tmp/.buildx-cache-new /tmp/.buildx-cache
-
My HNG Journey. Stage Four: Mastering Multi-Environment Deployments: A Deep Dive into CI/CD with Next.js, Docker, and Nginx
Configuring the GitHub Actions Workflow We set up a GitHub Actions workflow to automate the integration and deployment process. The integration workflow is triggered on every pull request while the deployment workflow was triggered upon the completion of the build and push workflow for docker images gotten from the marketplace. It used the appleboy/ssh-action to execute the deployment script on the server.
-
Continuous Deployment with GitHub Actions and Kamal
We use the docker/build-push-action to build the application image. In addition to setting the correct tag, the image build step must also provide a label matching your service name. Because the image should be pushed to your container registry, we set push: true, and because we want ludicrous build speed we instruct the build step to utilize the GitHub Actions cache.
-
Dockerize and Deploy a NodeJS Application to Cloud Run with GitHub Actions
name: Lint and Dockerize the app on: push: branches: [master] pull_request: branches: [master] env: # Use docker.io for Docker Hub if empty REGISTRY: docker.io # github.repository as / IMAGE_NAME: ${{ github.repository }} jobs: build: runs-on: ubuntu-latest permissions: contents: read packages: write steps: - name: Checkout repository uses: actions/checkout@v2 - name: Set up Google Cloud uses: google-github-actions/[email protected] with: project_id: ${{ secrets.GCP_PROJECT_ID }} service_account_key: ${{ secrets.GCP_SA_KEY }} # Login against a Docker registry except on PR # https://github.com/docker/login-action - name: Log into registry ${{ env.REGISTRY }} # if: github.event_name != 'pull_request' uses: docker/login-action@v1 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} # Extract metadata (tags, labels) for Docker # https://github.com/docker/metadata-action #- name: Extract Docker metadata # id: meta # uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 # with: # images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} # Build and push Docker image with Buildx (don't push on PR) # https://github.com/docker/build-push-action - name: Build and push Docker image uses: docker/build-push-action@v2 with: context: ./ tags: ${{ secrets.DOCKER_USERNAME }}/magga:latest push: true file: ./Dockerfile - name: Image digest run: echo
nocodb
-
Open Source Ecosystem Unleashed: A Deep Dive into April 2025's Key Updates
NocoDB Support for Oracle Databases: Broadening compatibility for enterprise users (NocoDB GitHub).
-
Top 15 Fastest-Growing Open-Source Low-Code Projects on GitHub in 2025
GitHub: https://github.com/nocodb/nocodb
-
Wikipedia and Stack Overflow Search
Hi,
https://mach3db.com is now a frontend to search Wikipedia and Stack Overflow article titles.
Right now I only have simple substring search to reduce load on my server.
The results are clickable links that point to lightweight versions of Wikipedia and Stack Overflow articles.
Please give it a try!
It works best in the Vivaldi browser: https://vivaldi.com/
Stack Overflow results can also be filtered by minimum number of comments.
Please email [email protected] if you are interested in our blazing fast PostgreSQL compatible hosted database solution.
We also offer NocoDB (https://nocodb.com/) and Grist (https://www.getgrist.com/) high speed hosted instances.
Thanks!
-
NocoDB silently moves audit logs to enterprise through a misleading PR
NocoDB, the open source Airtable alternative, has quietly removed audit logging capabilities from their open source version through a pull request deceptively titled "fix(nc-gui): audit log ui changes". This isn't a mere UI fix - it's a fundamental feature removal that pushes essential security functionality behind an enterprise paywall.
https://github.com/nocodb/nocodb/pull/9992
This raises serious questions about NocoDB's commitment to open source principles. For those affected, what alternative open source solutions have you found for audit logging in similar database tools?
-
How to Build Internal Tools 100x Faster
It is possible to speed up the development and delivery process for many internal applications by using no-code or low code tools. These vary in offerings from open source to SaaS, including popular ones like AirTable, BudiBase, Retool, NocoDB and others. These can all greatly help speed up delivery times.
- Show HN: Visual DB – Web front end for your database
-
Information flow - how I capture the notes
Notion, free for one-person team. Currently, probably the most popular application on the whole internet. You can do everything with it. Build a CRM, take notes, and store rows, as you can do with nocodb. Awesome Swiss-army knife, with a web app, and native clients (officially Mac and Windows). Unfortunately, in those days no offline mode, and privacy concerns, and everything was stored on Notion's side. Bessie last thing, why did I leave it?
-
Awesome-no-code-tools
NocoDB - Free & Open Source Airtable alternative - turns any SQL database into smart spreadsheet
-
What are low-code open-source tools? – Guideline
NocoDB
-
The Top 12 Open-Source No-Code Tools with the Most GitHub Stars
GitHub https://github.com/nocodb/nocodb GitHub Star 43.7k The most recent update on GitHub One day ago Official website https://nocodb.com/ Documentation https://docs.nocodb.com/
What are some alternatives?
setup-buildx-action - GitHub Action to set up Docker Buildx
nocobase - NocoBase is an extensibility-first, open-source no-code/low-code platform for building business applications and enterprise solutions.
upload-artifact
supabase - The Postgres development platform. Supabase gives you a dedicated Postgres database to build your web, mobile, and AI applications.
metadata-action - GitHub Action to extract metadata (tags, labels) from Git reference and GitHub events for Docker
Baserow - Open source no-code database and Airtable alternative. Create your own online database without technical experience. Performant with high volumes of data, can be self hosted and supports plugins
