Skip to content

Instantly share code, notes, and snippets.

View tankcodes-dev's full-sized avatar

TankCodes tankcodes-dev

View GitHub Profile
@tankcodes-dev
tankcodes-dev / cd.yml
Last active January 10, 2026 13:07
CI/CD pipeline to build and push images to Docker hub and then deploy it to VM.
name: Deploy Backend
on:
push:
branches:
- production
jobs:
build-and-push-docker-image:
runs-on: ubuntu-latest
@tankcodes-dev
tankcodes-dev / nginx.conf
Last active December 30, 2025 17:28
nginx configuration for reverse proxy
events {
# Event directives...
}
http {
server {
listen 80;
server_name api.tankcodes.com;
location / {