|
| 1 | +# |
| 2 | +# Licensed to the Apache Software Foundation (ASF) under one |
| 3 | +# or more contributor license agreements. See the NOTICE file |
| 4 | +# distributed with this work for additional information |
| 5 | +# regarding copyright ownership. The ASF licenses this file |
| 6 | +# to you under the Apache License, Version 2.0 (the |
| 7 | +# "License"); you may not use this file except in compliance |
| 8 | +# with the License. You may obtain a copy of the License at |
| 9 | +# |
| 10 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +# |
| 12 | +# Unless required by applicable law or agreed to in writing, |
| 13 | +# software distributed under the License is distributed on an |
| 14 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | +# KIND, either express or implied. See the License for the |
| 16 | +# specific language governing permissions and limitations |
| 17 | +# under the License. |
| 18 | +# |
| 19 | + |
| 20 | +services: |
| 21 | + polaris: |
| 22 | + image: apache/polaris:latest |
| 23 | + ports: |
| 24 | + - "8181:8181" |
| 25 | + - "8182:8182" |
| 26 | + environment: |
| 27 | + AWS_REGION: us-west-2 |
| 28 | + AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID |
| 29 | + AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY |
| 30 | + POLARIS_BOOTSTRAP_CREDENTIALS: default-realm,root,s3cr3t |
| 31 | + polaris.realm-context.realms: default-realm |
| 32 | + quarkus.log.file.enable: "false" |
| 33 | + quarkus.otel.sdk.disabled: "true" |
| 34 | + polaris.features."DROP_WITH_PURGE_ENABLED": "true" |
| 35 | + polaris.features."ALLOW_INSECURE_STORAGE_TYPES": "true" |
| 36 | + polaris.features."SUPPORTED_CATALOG_STORAGE_TYPES": "[\"FILE\",\"S3\",\"GCS\",\"AZURE\"]" |
| 37 | + polaris.readiness.ignore-severe-issues: "true" |
| 38 | + healthcheck: |
| 39 | + test: ["CMD", "curl", "http://localhost:8182/q/health"] |
| 40 | + interval: 10s |
| 41 | + timeout: 10s |
| 42 | + retries: 5 |
0 commit comments