@@ -220,7 +220,7 @@ def fix_mount_dict(compose, mount_dict, proj_name, srv_name):
220220 vol = (vols .get (source , None ) or {}) if source else {}
221221 name = vol .get ("name" , None )
222222 mount_dict ["_vol" ] = vol
223- # handle anonymouse or implied volume
223+ # handle anonymous or implied volume
224224 if not source :
225225 # missing source
226226 vol ["name" ] = "_" .join (
@@ -591,7 +591,7 @@ def get_secret_args(compose, cnt, secret):
591591 # docker-compose does not support external secrets outside of swarm mode.
592592 # However accessing these via podman is trivial
593593 # since these commands are directly translated to
594- # podman-create commands, albiet we can only support a 1:1 mapping
594+ # podman-create commands, albeit we can only support a 1:1 mapping
595595 # at the moment
596596 if declared_secret .get ("external" , False ) or declared_secret .get ("name" , None ):
597597 secret_opts += f",uid={ uid } " if uid else ""
@@ -618,7 +618,7 @@ def get_secret_args(compose, cnt, secret):
618618 return ["--secret" , "{}{}" .format (secret_name , secret_opts )]
619619
620620 raise ValueError (
621- 'ERROR: unparseable secret: "{}", service: "{}"' .format (
621+ 'ERROR: unparsable secret: "{}", service: "{}"' .format (
622622 secret_name , cnt ["_service" ]
623623 )
624624 )
0 commit comments