Skip to content

Instantly share code, notes, and snippets.

View vijaykrishnaa614's full-sized avatar

Vijay Krishna A vijaykrishnaa614

View GitHub Profile
@vijaykrishnaa614
vijaykrishnaa614 / Jenkinsfile
Created August 13, 2022 16:32 — forked from merikan/Jenkinsfile
Some Jenkinsfile examples
Some Jenkinsfile examples
@vijaykrishnaa614
vijaykrishnaa614 / jenkins-docker-compose.yml
Created August 9, 2022 15:01 — forked from pythoninthegrass/jenkins-docker-compose.yml
Run jenkins master and slave using docker compose
# MASTER PRE-REQS
# Install docker, docker-compose
# mkdir -p ~/{jenkins,jnlp_slave}
# master
# docker run -d \
# -u root \
# --name=jenkins \
# -e TZ=America/Denver \
@vijaykrishnaa614
vijaykrishnaa614 / docker-compose.yml
Created August 4, 2022 14:58 — forked from ThabetAmer/docker-compose.yml
Run SonarQube and SonarScanner in Docker-compose
#
# Based on https://hub.docker.com/_/sonarqube
#
version: "3.7"
services:
sonarqube:
container_name: sonarqube
@vijaykrishnaa614
vijaykrishnaa614 / sonarqube-docker-compose.yml
Created August 4, 2022 10:32 — forked from Warchant/sonarqube-docker-compose.yml
docker-compose file to setup production-ready sonarqube
version: "3"
services:
sonarqube:
image: sonarqube
expose:
- 9000
ports:
- "127.0.0.1:9000:9000"
networks: