Skip to content

Commit

Permalink
Pin docker-engine to 1.9.1 (connected to #97)
Browse files Browse the repository at this point in the history
  • Loading branch information
jvivian authored and hannes-ucsc committed Feb 5, 2016
1 parent 619ccba commit a957428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/cgcloud/core/docker_box.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def _list_packages_to_install( self ):
assert kernel.endswith( '-generic' ), \
'Current kernel is not supported by the linux-image-extra-virtual package.'
packages = super( DockerBox, self )._list_packages_to_install( )
packages += [ 'docker-engine', 'linux-image-extra-' + kernel, 'linux-image-extra-virtual' ]
packages += [ 'docker-engine=1.9.1-0~trusty', 'linux-image-extra-' + kernel, 'linux-image-extra-virtual' ]
if run( 'cat /sys/module/apparmor/parameters/enabled' ).lower( ).startswith( 'y' ):
packages += [ 'apparmor' ]
return packages
Expand Down

0 comments on commit a957428

Please sign in to comment.