Xuanwo commented on issue #5263: URL: https://github.com/apache/arrow-rs/issues/5263#issuecomment-1887149174
> The image I'm using is just the one I got from: > > ``` > docker pull tustvold/fake-gcs-server && docker run --rm -it -p 127.0.0.1:9090:9090 tustvold/fake-gcs-server -scheme http -port 9090 -external-url http://127.0.0.1:9090 -backend memory > ``` Based on my experience with `fake-gcs-server`, the bucket is not created automatically. You will need to mount a subpath into the container. For example, I test with fake-gcs-server via this docker-compose file: ```yaml fake-gcs-server: image: fsouza/fake-gcs-server:${FAKE_GCS_SERVER_VERSION:-1.47.7} container_name: fake-gcs-server ports: - "${MAP_HOST_FAKE_GCS_SERVER:-127.0.0.1}:4443:4443" profiles: - all - fake-gcs-server volumes: - fake_gcs_server_data:/data/sample-bucket <------------ look here! command: -scheme http volumes: fake_gcs_server_data: ``` -- 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]
