Skip to content

Commit f71f0ba

Browse files
authored
Merge pull request #787 from Vincevrp/patch-1
Fix missing comma in docker::image example
2 parents 9e5ff53 + b435e89 commit f71f0ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,8 @@ To rebuild an image, subscribe to external events such as Dockerfile changes by
326326

327327
```puppet
328328
docker::image { 'ubuntu':
329-
docker_file => '/tmp/Dockerfile'
330-
subscribe => File['/tmp/Dockerfile'],
329+
docker_file => '/tmp/Dockerfile',
330+
subscribe => File['/tmp/Dockerfile'],
331331
}
332332
333333
file { '/tmp/Dockerfile':

0 commit comments

Comments
 (0)