Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 302 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 302 Bytes

Create Docker Image

docker build -t [IMAGE_NAME] [PATH]

Create Docker Volume

docker volume create [VOLUME_NAME]

Create and Run Docker Container

docker run -d -p 8080:8080 -p 50000:50000 --mount source=[VOLUME_NAME],destination=/var/jenkins_home [IMAGE_NAME]