@@ -220,7 +220,7 @@ def fix_mount_dict(compose, mount_dict, proj_name, srv_name):
220
220
vol = (vols .get (source , None ) or {}) if source else {}
221
221
name = vol .get ("name" , None )
222
222
mount_dict ["_vol" ] = vol
223
- # handle anonymouse or implied volume
223
+ # handle anonymous or implied volume
224
224
if not source :
225
225
# missing source
226
226
vol ["name" ] = "_" .join (
@@ -591,7 +591,7 @@ def get_secret_args(compose, cnt, secret):
591
591
# docker-compose does not support external secrets outside of swarm mode.
592
592
# However accessing these via podman is trivial
593
593
# 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
595
595
# at the moment
596
596
if declared_secret .get ("external" , False ) or declared_secret .get ("name" , None ):
597
597
secret_opts += f",uid={ uid } " if uid else ""
@@ -618,7 +618,7 @@ def get_secret_args(compose, cnt, secret):
618
618
return ["--secret" , "{}{}" .format (secret_name , secret_opts )]
619
619
620
620
raise ValueError (
621
- 'ERROR: unparseable secret: "{}", service: "{}"' .format (
621
+ 'ERROR: unparsable secret: "{}", service: "{}"' .format (
622
622
secret_name , cnt ["_service" ]
623
623
)
624
624
)
0 commit comments