testirme 0 Posted October 2, 2023 curl --unix-socket /var/run/docker.sock GET http://localhost:2375/containers/json Is there a way to do something like this curl command in my Delphi application running in Docker? The important part is being able to communicate with processes over a socket. Share this post Link to post
Fr0sT.Brutal 900 Posted October 3, 2023 I think you should be able to do this with FileOpen Share this post Link to post
borni69 1 Posted October 9, 2023 Not sure I understand you, but I make a lot of curl command from my web app running on linux.. Example converting heic to jpg I do this with curl command from Delphi on Linux ubuntu.. process 1) image uploadet from web in .heic format 2) save to disc 3) curl convert heic to jpg using converter installed on linux 4) load .jpg from disc 5) delete on disc 6) upload to s3 If you need something like this I can give you an example.. but maybe I am misunderstanding what you are looking for... Share this post Link to post
RDP1974 40 Posted October 9, 2023 if I don't mind http client is using under the hood the curl Share this post Link to post