course-implementing-self-hosted-docker-registry icon indicating copy to clipboard operation
course-implementing-self-hosted-docker-registry copied to clipboard

Results 1 course-implementing-self-hosted-docker-registry issues
Sort by recently updated
recently updated
newest added

modify docker-compose.yml and add DOCKER_TLS_CERTDIR: "" ``` version: "3.5" services: learning-registry: image: registry:2.6.2 learning-jenkins: build: ./learning-jenkins volumes: - learning-jenkins-home:/var/jenkins_home ports: - "8190:8080" environment: DOCKER_HOST: tcp://dind:2375 vetted-registry: image: registry:2.6.2 ports: -...