Skip to content

Commit

Permalink
Fix #28
Browse files Browse the repository at this point in the history
  • Loading branch information
orenlab committed May 18, 2024
1 parent 0087206 commit 3499499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/core/adapters/docker_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def check_image_details(self):
).time().strftime("%H:%M:%S")
details.append(
{
'name': container_details.attrs['Name'].title(),
'name': container_details.attrs['Name'].title().replace('/', ''),
'image': container_details.attrs['Config']['Image'],
'created': f'{created_day}, {created_time}',
'mem_usage': naturalsize(usage_stats['memory_stats']['usage']),
Expand Down

0 comments on commit 3499499

Please sign in to comment.