Skip to content

Commit

Permalink
Correct python command
Browse files Browse the repository at this point in the history
  • Loading branch information
omarlopesino committed Apr 1, 2024
1 parent 73fcd95 commit 386e4e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/parse_yml.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_env_value(self, key):


def parse_docker_info(self):
docker_info_stream = subprocess.check_output(['docker compose', 'config'])
docker_info_stream = subprocess.check_output(['docker', 'compose', 'config'])
# print(docker_info_stream )
self.info = yaml.safe_load(docker_info_stream)

Expand Down

0 comments on commit 386e4e7

Please sign in to comment.