Skip to content

Commit

Permalink
Use proxy settings
Browse files Browse the repository at this point in the history
  • Loading branch information
rmichaelis committed Jan 18, 2021
1 parent 93e86c1 commit 4a6aa60
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,10 @@ def main():
base = env["DOCKER_BASE"] if "DOCKER_BASE" in env else "camptocamp/geoportailv3"
tag = ":" + env["DOCKER_TAG"] if "DOCKER_TAG" in env else ""
schema = env["PGSCHEMA"]
http_proxy = env["http_proxy"]
https_proxy = env["https_proxy"]
if "http_proxy" in env:
http_proxy = env["http_proxy"]
if "https_proxy" in env:
https_proxy = env["https_proxy"]

default = not (args.config or args.geoportal)

Expand Down

0 comments on commit 4a6aa60

Please sign in to comment.