kou commented on PR #43582:
URL: https://github.com/apache/arrow/pull/43582#issuecomment-2272650644

   How about using `docker compose` (or `docker-compose`) when the service has 
`links:`? 
   
   ```diff
   diff --git a/dev/archery/archery/docker/core.py 
b/dev/archery/archery/docker/core.py
   index 5be4887ea4..9ba603626e 100644
   --- a/dev/archery/archery/docker/core.py
   +++ b/dev/archery/archery/docker/core.py
   @@ -341,7 +341,7 @@ class DockerCompose(Command):
    
            args = []
    
   -        use_docker = self.config.using_docker or service['need_gpu'] or 
resource_limit
   +        use_docker = (not service.get('links')) and 
(self.config.using_docker or service['need_gpu'] or resource_limit)
            if use_docker:
                # use gpus, requires docker>=19.03
                if service['need_gpu']:
   ```


-- 
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