Skip to content

Commit

Permalink
Minor fix for ui command
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannah Bast committed Mar 11, 2024
1 parent a6bf33e commit 58a3d7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qlever/commands/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ def execute(self, args) -> bool:
# Construct commands and show them.
server_url = f"http://{args.host_name}:{args.port}"
ui_url = f"http://{args.host_name}:{args.ui_port}"
pull_cmd = f"{args.ui_system} pull -q {args.ui_image_name}"
pull_cmd = f"{args.ui_system} pull -q {args.ui_image}"
run_cmd = f"{args.ui_system} run -d " \
f"--publish {args.ui_port}:7000 " \
f"--name {args.ui_container_name} " \
f"--name {args.ui_container} " \
f"{args.ui_image}"
exec_cmd = f"{args.ui_system} exec -it " \
f"{args.ui_container} " \
Expand Down

0 comments on commit 58a3d7f

Please sign in to comment.