Skip to content

Instantly share code, notes, and snippets.

View rishabh-jain424's full-sized avatar
🎯
Focusing

Rishabh Jain rishabh-jain424

🎯
Focusing
View GitHub Profile
@rishabh-jain424
rishabh-jain424 / sql-proxy.txt
Created October 30, 2020 11:26
Configuring a secure connection from a PHP Application to Cloud SQL using Cloud SQL Proxy
#Note: Before start below steps, Cloud SQL Admin API must be enabled in GCP Project.
cd /var/run/;
sudo mkdir cloud_sql_proxy;
#Go to Home directory
mkdir proxy;
cd proxy;
#download Cloud SQL Proxy
@rishabh-jain424
rishabh-jain424 / cloudbuild.yaml
Created August 20, 2019 09:37 — forked from Philmod/cloudbuild.yaml
concurrent docker builds on Google Container Builder
steps:
- name: 'gcr.io/cloud-builders/docker'
args:
- 'build'
- '-f'
- 'Dockerfile.alpine'
- '-t'
- 'gcr.io/$PROJECT_ID/large-docker-alpine:latest'
- '.'
waitFor: ['-']