# demo-docker-jenkins **Repository Path**: consolelog/demo-docker-jenkins ## Basic Information - **Project Name**: demo-docker-jenkins - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-06-12 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README > Permission denied - /var/jenkins_home/copy_reference_file.log ``` This is the same as #155 and documented in README This will store the jenkins data in /your/home on the host. Ensure that /your/home is accessible by the jenkins user in container (jenkins user - uid 1000) or use -u some_other_user parameter with docker run. You must set the correct permissions in the host before you mount volumes sudo chown 1000 volume_dir An alternative is discussed in #158 ``` plugins.txt The link provided by @jamshid does not seem to work on our Jenkins (v2.73.1), I use the following .groovy script ``` Jenkins.instance.pluginManager.plugins.each{ plugin -> println ("${plugin.getShortName()}: ${plugin.getVersion()}") } ``` This can be executed from the "Script" console at *https://YOUR_JENKINS_URL/script* (assuming you are *admin*)