Skip to content

Instantly share code, notes, and snippets.

View Omisamuel's full-sized avatar
😇

Samuel Omitogun Omisamuel

😇
View GitHub Profile
@Omisamuel
Omisamuel / docker-compose.yml
Created June 23, 2024 18:48 — forked from thomasdarimont/docker-compose.yml
Docker OpenLDAP + phpldapadmin example
version: '2'
services:
openldap:
image: osixia/openldap:1.2.3
container_name: openldap
environment:
LDAP_LOG_LEVEL: "256"
LDAP_ORGANISATION: "Example Inc."
LDAP_DOMAIN: "example.org"
LDAP_BASE_DN: ""
@Omisamuel
Omisamuel / jenkinspipeline-ecr.yml
Created March 5, 2023 14:48 — forked from ismailyenigul/jenkinspipeline-ecr.yml
Jenkins pipeline to build docker image and push to ecr
pipeline {
environment {
imagename = "ismailtest"
ecrurl = "https://828556645578.dkr.ecr.us-east-2.amazonaws.com"
ecrcredentials = "ecr:us-east-2:ecr-ismail"
dockerImage = ''
}
agent any
stages {
stage('Cloning Git') {