Skip to content

It contains Dockerfiles and their build process to Registries. It used for other labs

License

Notifications You must be signed in to change notification settings

carlosrodlop/docker-lib

Repository files navigation

Docker Library

docker-icon

Welcome to my Docker Library, a storage place for my assets related to my journey around Containers' Land


GitHub Latest Release) GitHub Issues gitleaks badge gitsecrets anchore mdLinkChecker

References

Image Catalog

swissknife

Swissknife Alpine Swissknife Ubuntu

Images for DevOps Tooling demos.

Stress and Stress-ng

Stress Ubuntu

Image for Load Testing including stress and stress-ng

Osixia openldap + Data

Oxia OpenLdap

Image for Ldap mock testing extending from osixia/docker-openldap. Ref Build an OpenLDAP Docker Image That’s Populated With Users

Configuration examples:

openldap-config

  • Jenkins (JCasC). It assumes ldap-service as the name of the service and kube-system as the namespace.
jenkins:
  securityRealm:
    ldap:
      configurations:
        - managerDN: "cn=admin,dc=acme,dc=org"
          managerPasswordSecret: "admin"
          rootDN: "dc=acme,dc=org"
          server: "ldap-service.NAMESPACE_EXAMPLE.svc.cluster.local"
          userSearch: "cn={0}"

Alternative: Load Data via ldapadd

  • Do not copy data into /container/service/slapd/assets/config/bootstrap/ldif
  • Add the users/groups with the following command:
ldapadd -h localhost -p 389 -c -x -D cn=admin,dc=acme,dc=org -W -f data.v3.ldif