Skip to content

Instantly share code, notes, and snippets.

View Shashankreddysunkara's full-sized avatar
🏠
Working from home

Shashank Reddy Sunkara Shashankreddysunkara

🏠
Working from home
View GitHub Profile
# Maintainer: Jakub Hajek, jakub.hajek@cometari.com
#
# docker stack deploy -c stack-elastic.yml elastic
#
# The stack creates Elasticsearch cluster consiting of
# - 3 dedicated master nodes in order to keep quorum
# - 4 dedicated data nodes to manage CRUD,
#
# Docker compose file to easily deploy Elasticsearch cluster 7.x on Docker Swarm cluster.
@Shashankreddysunkara
Shashankreddysunkara / stack-nfs.yml
Created December 11, 2021 05:16 — forked from jakubhajek/stack-nfs.yml
Docker Swarm, an example stack file with NFS volume
# docker stack deploy -c stack-nfs.yml nfs
#
# This is an example compose file with data volume mounted from remote server via NFS protocol
version: "3.7"
services:
nginx:
image: nginx:1.17
# Maintainer: Jakub Hajek, jakub.hajek@cometari.com
#
# docker stack deploy -c stack-elastic.yml elastic
#
# The stack creates Elasticsearch cluster consiting of
# - 3 dedicated master nodes in order to keep quorum
# - 4 dedicated data nodes to manage CRUD,
# - 2 coordination node acting like kind of load balancer in multi instance environments
#
#
@Shashankreddysunkara
Shashankreddysunkara / comlog.nginx.conf
Created July 22, 2021 12:48 — forked from jegj/comlog.nginx.conf
Basic provision script for node js server(expressif) + nginx + postgres 10.x
upstream comlog {
server unix:/tmp/comlog.socket;
}
server {
listen 80;
listen 443 ssl;
ssl_certificate /etc/nginx/certs/dev.comlog.crt;
ssl_certificate_key /etc/nginx/certs/dev.comlog.key;
@Shashankreddysunkara
Shashankreddysunkara / README.md
Created April 29, 2019 00:20 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


http://en-designetwork.hatenablog.com/entry/2016/11/27/pcf-dev-install-to-linux
https://pvtl.force.com/s/question/0D50e00005D3XYlCAN/is-pcf-dev-run-on-the-virtual-server-i-am-trying-to-run-pcf-dev-on-the-redhat-linux-virtual-server-while-i-am-getting-the-below-error
VMware Player ∞
Contents [hide]
1 VMware Player ∞
1.1 Install VMware Player ∞
1.2 Run VMware Player ∞
1.3 Uninstall VMware Player ∞
2 VirtualBox ∞
2.1 Install VirtualBox ∞
2.2 Run VirtualBox ∞
@Shashankreddysunkara
Shashankreddysunkara / gist:71e0ab6146d79b91bd35c7a23591ff99
Created March 9, 2019 03:30
virtualbox reinstall centos & ubuntu
Tony Chung Blog
Reinstall VirtualBox on Ubuntu & CentOS
For Ubuntu
To remove virtualbox
sudo dpkg --list virtualbox-*
job('jersey-rest-server') {
scm {
git {
remote {
url('git@github.com:marcelbirkner/jersey-rest-server.git')
}
createTag(false)
}
}
triggers {