andygrove commented on PR #249:
URL: https://github.com/apache/arrow-ballista/pull/249#issuecomment-1252385340

   I just tried this out on Ubuntu 20.04 after running `docker system prune -a` 
to remove any previous images and I ran into a couple issues that I was able to 
fix with the following path:
   
   ```
   diff --git a/dev/build-ballista-docker.sh b/dev/build-ballista-docker.sh
   index d8af64b5..5efbb152 100755
   --- a/dev/build-ballista-docker.sh
   +++ b/dev/build-ballista-docker.sh
   @@ -23,9 +23,9 @@ docker build -t ballista-builder --build-arg EXT_UID="$(id 
-u)" -f dev/docker/ba
    
    docker run -v $(pwd):/home/builder/workspace ballista-builder
    
   -docker-compose build
   +docker compose build
    
    . ./dev/build-set-env.sh
   -docker tag apache/arrow-ballista-executor 
"apache/arrow-ballista-executor:$BALLISTA_VERSION"
   -docker tag apache/arrow-ballista-scheduler 
"apache/arrow-ballista-scheduler:$BALLISTA_VERSION"
   -docker tag apache/arrow-ballista-benchmarks 
"apache/arrow-ballista-benchmarks:$BALLISTA_VERSION"
   +docker tag ballista-executor 
"apache/arrow-ballista-executor:$BALLISTA_VERSION"
   +docker tag ballista-scheduler 
"apache/arrow-ballista-scheduler:$BALLISTA_VERSION"
   +docker tag ballista-benchmarks 
"apache/arrow-ballista-benchmarks:$BALLISTA_VERSION"
   diff --git a/docker-compose.yml b/docker-compose.yml
   index cbfb400c..1865db69 100644
   --- a/docker-compose.yml
   +++ b/docker-compose.yml
   @@ -48,7 +48,7 @@ services:
        depends_on:
          - ballista-scheduler
      ballista-client:
   -    image: ballista-client
   +    image: ballista-benchmarks
        build:
          dockerfile: dev/docker/ballista-benchmarks.Dockerfile
          context: .
   ```
   
   This got me further - the images were built and tagged - but the integration 
test failed with:
   
   ```
   Error response from daemon: failed to create shim task: OCI runtime create 
failed: runc create failed: unable to start container process: exec: "/run.sh": 
stat /run.sh: no such file or directory: unknown
   
   ```


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