Skip to content

Commit

Permalink
removed keyword argument in docker_handler.py
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrf45 committed Dec 1, 2024
1 parent 585812c commit 9fa8f81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aegis-wrapper/aegis/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def main():
image_name=args.image or 'fonalex45/aegis:dev',
project_dir=project_dir,
host_network=args.host_network,
gui=args.gui,
gui=args.gui
attach_shell=True
)
except ValueError as e:
Expand Down
2 changes: 1 addition & 1 deletion aegis-wrapper/aegis/docker_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def start_container(self,
network_mode="host" if host_network else None,
volumes=volumes,
environment=environment,
tty=True,
tty=True
)
container.attach(stream=True, logs=True)
print(f"Container '{project_name}' started and attached.")
Expand Down

0 comments on commit 9fa8f81

Please sign in to comment.