precoder commented on PR #377:
URL: https://github.com/apache/commons-net/pull/377#issuecomment-3385960000

   A docker compose setup that I used for testing briefly looks like this:
   
   ```
   version: "3.3"
   services:
     ftpclient:
       image: <your-ftp-client-with-commos-net>:latest
       networks:
         ftp-client-network:
           aliases:
             - ftpclient.ftpclient.internal
     ftpserver:
       image: <your-ftp-server>:latest
       restart: always
       networks:
         ftp-server-network :
           aliases:
             - ftp.ftp.internal
       ports:
         - 21:21
     proxy:
       image: <your-http-proxy-such-as-squidproxy>:latest
       restart: always
       networks:
         ftp-client-network:
           aliases:
             - proxy.ftpclient.internal
         ftp-server-network :
           aliases:
             - proxy.ftp.internal
       ports:
         - 3128:3128
   
   networks:
     ftp-client-network:
     ftp-server-network:
   
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to