Files
main/programming/language/python3/gonullu/files/docker-29.patch
T
2026-03-30 14:30:46 +03:00

22 lines
1.1 KiB
Diff
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
diff -Nuar a/gonullu/docker.py b/gonullu/docker.py
--- a/gonullu/docker.py 2026-01-18 16:12:23.259038740 +0300
+++ b/gonullu/docker.py 2026-01-18 20:12:38.234980982 +0300
@@ -29,7 +29,7 @@
# containerımızı parametreleri ile çalıştıracağımız fonksiyonumuz.
if not self.my_client:
# my_client'de çalışan docker process'ini yakalıyorum.
- self.my_client = APIClient(base_url='unix://var/run/docker.sock', version='1.35')
+ self.my_client = APIClient(base_url='unix://var/run/docker.sock', version='1.44')
# container'ımızın host configlerini yapalım.
self.host_config = self.my_client.create_host_config(mem_limit='%sM' % self.memory_limit, binds=self.binds, security_opt=['seccomp:unconfined'])
@@ -44,7 +44,7 @@
if self.tmp_status is False:
self.log.information(message=message)
self.tmp_status = True
- print(' %s' % line['progress'], end='\r')
+ print(' %s' % line['progressDetail'], end='\r')
if self.tmp_status is True:
print('')