| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| services: |
| object-store: |
| image: rustfs/rustfs:1.0.0-rc.5 |
| container_name: pyiceberg-object-store |
| ports: |
| - 9001:9001 |
| - 9000:9000 |
| environment: |
| - RUSTFS_ACCESS_KEY=admin |
| - RUSTFS_SECRET_KEY=password |
| - RUSTFS_VOLUMES=/data |
| - RUSTFS_ADDRESS=:9000 |
| - RUSTFS_CONSOLE_ENABLE=true |
| - RUSTFS_CONSOLE_ADDRESS=:9001 |
| healthcheck: |
| test: ["CMD-SHELL", "curl --fail http://127.0.0.1:9000/health"] |
| interval: 5s |
| timeout: 5s |
| retries: 10 |
| start_period: 5s |
| aws-cli: |
| image: amazon/aws-cli:2.36.44 |
| container_name: pyiceberg-aws-cli |
| depends_on: |
| object-store: |
| condition: service_healthy |
| environment: |
| - AWS_ACCESS_KEY_ID=admin |
| - AWS_SECRET_ACCESS_KEY=password |
| - AWS_REGION=us-east-1 |
| - AWS_ENDPOINT_URL=http://object-store:9000 |
| entrypoint: /bin/sh |
| command: |
| - -c |
| - "aws s3 rb s3://warehouse --force 2>/dev/null; aws s3 mb s3://warehouse" |