Skip to content

Commit

Permalink
fix: instruction is now docker compose -f file up (#4279)
Browse files Browse the repository at this point in the history
  • Loading branch information
samsja committed Feb 11, 2022
1 parent 5081722 commit ad50d29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jina/orchestrate/flow/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1807,7 +1807,7 @@ def to_docker_compose_yaml(
command = (
'docker-compose up'
if output_path is None
else f'docker-compose up -f {output_path}'
else f'docker-compose -f {output_path} up'
)

self.logger.info(
Expand Down

0 comments on commit ad50d29

Please sign in to comment.