Skip to content

Commit

Permalink
fix broken _dirname
Browse files Browse the repository at this point in the history
  • Loading branch information
muayyad-alsadi committed Jun 11, 2019
1 parent f7ba7ce commit a29cf06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podman-compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ def container_to_args(cnt, dirname, podman_path, shared_vols):
for i in cnt.get('volumes', []):
# TODO: should we make it os.path.realpath(os.path.join(, i))?
mount_args = mount_desc_to_args(
i, podman_path, cnt['_dirname'],
i, podman_path, dirname,
cnt['_project'], cnt['_service'], cnt['name'],
shared_vols
)
Expand Down

0 comments on commit a29cf06

Please sign in to comment.