docs: update readme; fix typo

This commit is contained in:
2023-07-23 00:12:45 +08:00
committed by Bryant He
parent 920e204756
commit cb5762720f
3 changed files with 3 additions and 3 deletions

View File

@@ -141,7 +141,7 @@ def stop(middleware):
docker_compose_file_dir = os.path.join(get_agent_directory(), middleware)
for file_ in os.listdir(docker_compose_file_dir):
compose_file_path = os.path.join(docker_compose_file_dir, file_)
with status(f'Stoping {middleware}'):
with status(f'Stopping {middleware}'):
docker = DockerClient(compose_files=[compose_file_path])
docker.compose.down()