pritamchk98/jenkins_9080

By pritamchk98

Updated 8 months ago

This is a custom jenkins image with docker installed in container and customer workspace path set

Image
Operating Systems
Developer Tools

16

This is a custom jenkins image with docker installed in container and customer workspace path set.

STARTING PORT : 9080

WORKSPACE : /home/jenkins/WORKSPACE

name: jenkins_server
services:
  jenkins:
    image: pritamchk98/jenkins_9080:v1.0
    container_name: c_jenkins
    restart: on-failure
    ports:
      - "9080:9080"
      - "2222:22"
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - /c/Users/PRITAM/Desktop/DOCKER/HANDS_ON/JENKINS:/home/jenkins/WORKSPACE
volumes:
  jenkins_data:

Docker Pull Command

docker pull pritamchk98/jenkins_9080