Skip to content

Commit

Permalink
Missing env argument to subprocess.Popen
Browse files Browse the repository at this point in the history
  • Loading branch information
tarnfeld committed Nov 1, 2014
1 parent e56b931 commit a16d6c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion portainer/app/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def launch_docker_daemon():
)

# Use the `wrapdocker` script included in our docker image
proc = subprocess.Popen(["/usr/local/bin/wrapdocker"])
proc = subprocess.Popen(["/usr/local/bin/wrapdocker"], env=env)

self.docker = docker.Client()
while True:
Expand Down

0 comments on commit a16d6c1

Please sign in to comment.