1
0
mirror of https://github.com/thib8956/nginx-proxy synced 2024-11-24 04:46:31 +00:00

Fixed out-of-scope variable

This commit is contained in:
Steve Kamerman 2018-04-22 16:03:43 -04:00
parent ccbbbeb928
commit c417813df9
No known key found for this signature in database
GPG Key ID: D39F3EEFC1837DF1

View File

@ -257,7 +257,7 @@ def get_nginx_conf_from_container(container):
strm, stat = container.get_archive('/etc/nginx/conf.d/default.conf')
with tarfile.open(fileobj=StringIO(strm.read())) as tf:
conffile = tf.extractfile('default.conf')
return conffile.read()
return conffile.read()
def docker_compose_up(compose_file='docker-compose.yml'):