Last active
November 9, 2016 16:19
-
-
Save alappe/bc12dd5fa8df1c2da27492d00bdef9ad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 docker_service 'default' do | |
6 group 'docker' | |
7 action [:create, :start] | |
8 http_proxy 'special proxy for foo' | |
9 https_proxy 'special proxy for foo' | |
10 only_if { false } | |
11 end | |
12 | |
13 docker_service 'default' do | |
14 group 'docker' | |
15 action [:create, :start] | |
16 not_if { false } | |
17 end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment