Skip to content

Instantly share code, notes, and snippets.

View ashinga48's full-sized avatar

ravi kesanam ashinga48

  • Melbourne
View GitHub Profile
@ashinga48
ashinga48 / search_for_usages_in_folder.sh
Last active February 23, 2026 23:57
search_for_usages_in_folder.sh
#!/bin/bash
# How to use
# ===========
# chmod +x ./search_usages.sh
# ./search_usages.sh
#
# Description
# ============
# This script reads a list of table names from a text file and searches the
@ashinga48
ashinga48 / dockovpn-docker-compose.yml
Last active August 11, 2024 10:35
dockovpn docker compose
version: '3'
volumes:
dockovpn:
services:
dockovpn:
image: alekslitvinenk/openvpn
container_name: dockovpn
restart: always
@ashinga48
ashinga48 / docker-compose.yml
Last active October 29, 2021 11:17
MongoDB Local compose snippet
version: "3.8"
# Read More https://www.bmc.com/blogs/mongodb-docker-container/
services:
mongodb:
image: mongo
container_name: mongodb
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=pass12345
volumes: