|
| 1 | +# Licensed to the Apache Software Foundation (ASF) under one |
| 2 | +# or more contributor license agreements. See the NOTICE file |
| 3 | +# distributed with this work for additional information |
| 4 | +# regarding copyright ownership. The ASF licenses this file |
| 5 | +# to you under the Apache License, Version 2.0 (the |
| 6 | +# "License"); you may not use this file except in compliance |
| 7 | +# with the License. You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, |
| 12 | +# software distributed under the License is distributed on an |
| 13 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 14 | +# KIND, either express or implied. See the License for the |
| 15 | +# specific language governing permissions and limitations |
| 16 | +# under the License. |
| 17 | + |
| 18 | +# All of the following environment variables are required to set default values |
| 19 | +# for the parameters in docker-compose.yml. |
| 20 | + |
| 21 | +# empty prefix means that the docker-compose configuration will use named |
| 22 | +# volumes which potentially improves the performance on docker for macos and |
| 23 | +# docker for windows, it also prevents the contamination of the source |
| 24 | +# directory |
| 25 | +# a non-empty prefix means that directories from the host are bind-mounted |
| 26 | +# into the container, it should be set to ".docker/" on github actions to keep |
| 27 | +# the cache plugin functional |
| 28 | +DOCKER_VOLUME_PREFIX= |
| 29 | + |
| 30 | +# turn on inline build cache, this is a docker buildx feature documented |
| 31 | +# at https://github.com/docker/buildx#--cache-tonametypetypekeyvalue |
| 32 | +BUILDKIT_INLINE_CACHE=1 |
| 33 | +COMPOSE_DOCKER_CLI_BUILD=1 |
| 34 | +DOCKER_BUILDKIT=1 |
| 35 | + |
| 36 | +# different architecture notations |
| 37 | +ARCH=amd64 |
| 38 | +ARCH_ALIAS=x86_64 |
| 39 | +ARCH_SHORT=amd64 |
| 40 | + |
| 41 | +# Default repository to pull and push images from |
| 42 | +REPO=apache/arrow-dev |
| 43 | + |
| 44 | +# The setup attempts to generate coredumps by default, in order to disable the |
| 45 | +# coredump generation set it to 0 |
| 46 | +ULIMIT_CORE=-1 |
| 47 | + |
| 48 | +# Default versions for platforms |
| 49 | + |
| 50 | +# Default versions for various dependencies |
| 51 | +JDK=11 |
| 52 | +MAVEN=3.9.6 |
0 commit comments