We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b33e83e commit 4238b99Copy full SHA for 4238b99
1 file changed
CI/Jenkinsfile
@@ -9,14 +9,10 @@ node {
9
sh 'docker volume create vol-in'
10
sh 'docker volume create vol-out'
11
sh 'docker volume ls'
12
- // sh 'docker volume inspect vol-in'
13
- // sh 'ls $HOME'
14
-
15
- docker.image('node').inside {
16
- sh 'make test'
17
- }
18
- // sh 'touch /var/lib/docker/volumes/vol-in/_data/test.txt'
19
- // sh 'ls /var/lib/docker/volumes/vol-in/_data'
+
+ sh 'docker run -d --rm --name dummy -v vol-in:/vi alpine tail -f /dev/null'
+ sh 'docker cp . dummy:/vi'
+ sh 'docker stop dummy'
20
}
21
22
stage('Build image') {
0 commit comments