kou commented on code in PR #12854: URL: https://github.com/apache/arrow/pull/12854#discussion_r849879561
########## python/examples/minimal_build/README.md: ########## @@ -34,10 +34,21 @@ docker build -t arrow_fedora_minimal -f Dockerfile.fedora . Then build PyArrow with conda or pip, respectively: ``` # With pip -docker run --rm -t -i -v $PWD:/io arrow_fedora_minimal /io/build_venv.sh +docker run --rm -t -i -v $PWD:/io -v $PWD/../../..:/arrow arrow_fedora_minimal /io/build_venv.sh # With conda -docker run --rm -t -i -v $PWD:/io arrow_fedora_minimal /io/build_conda.sh +docker run --rm -t -i -v $PWD:/io -v $PWD/../../..:/arrow arrow_fedora_minimal /io/build_conda.sh +``` + +Alternatively you can use [Docker Compose][docker-compose] to build and run using: Review Comment: I agree with the idea. It seems that we can use `docker-compose` with `podman` by `dnf install podman-plugins` and `systemctl enable --now podman.socket`. So we can document `docker-compose` interface and how to use `docker-compose` with `podman`. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org