Skip to content

Commit

Permalink
docker complaining: change HOME var to /root
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianiurca committed Dec 15, 2020
1 parent 0557233 commit dac5871
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/puppet/provider/docker_compose/ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
commands dockercmd: 'docker'

has_command(:docker, command(:dockercmd)) do
environment(HOME: '/var/tmp')
environment(HOME: '/root')
end

def exists?
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/provider/docker_network/ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
commands dockercmd: 'docker'

has_command(:docker, command(:dockercmd)) do
environment(HOME: '/var/tmp')
environment(HOME: '/root')
end

def network_conf
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/provider/docker_stack/ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
commands dockercmd: 'docker'

has_command(:docker, command(:dockercmd)) do
environment(HOME: '/var/tmp')
environment(HOME: '/root')
end

def exists?
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/provider/docker_volume/ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
commands dockercmd: 'docker'

has_command(:docker, command(:dockercmd)) do
environment(HOME: '/var/tmp')
environment(HOME: '/root')
end

def volume_conf
Expand Down

0 comments on commit dac5871

Please sign in to comment.