Mercurial > code > home > repos > patchablegraph
changeset 5:506f6941a38c
fix registry hostname
author | drewp@bigasterisk.com |
---|---|
date | Wed, 24 Nov 2021 19:48:07 -0800 |
parents | dc4f852d0d70 |
children | 427d808adc7d |
files | tasks.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/tasks.py Wed Nov 24 19:47:35 2021 -0800 +++ b/tasks.py Wed Nov 24 19:48:07 2021 -0800 @@ -10,7 +10,7 @@ @task def browser_test_build(ctx): - ctx.run(f'docker build --network=host -t bang:5000/patchable_graph_browser_test .') + ctx.run(f'docker build --network=host -t bang5:5000/patchable_graph_browser_test .') @task(pre=[browser_test_build]) def browser_test(ctx): @@ -19,6 +19,6 @@ f'--rm -it ' f'--net=host ' f'-v `pwd`:/opt ' - f'bang:5000/patchable_graph_browser_test ' + f'bang5:5000/patchable_graph_browser_test ' f'/bin/bash', #f'python3 browser_test.py', pty=True)