We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 831113a commit 82ab68fCopy full SHA for 82ab68f
regtests/docker-compose.yml
@@ -18,12 +18,19 @@
18
#
19
20
services:
21
-
+ init:
22
+ image: busybox
23
+ volumes:
24
+ - ./hadoop-warehouse:/tmp/hadoop_warehouse
25
+ command: ["sh", "-c", "umask 000 && mkdir -p /tmp/hadoop_warehouse && chmod 777 /tmp/hadoop_warehouse"]
26
polaris:
27
image: apache/polaris:latest
28
ports:
29
- "8181"
30
- "8182"
31
+ depends_on:
32
33
+ condition: service_completed_successfully
34
environment:
35
AWS_REGION: us-west-2
36
AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
@@ -62,6 +69,8 @@ services:
62
69
depends_on:
63
70
64
71
condition: service_healthy
72
73
65
74
66
75
AWS_TEST_ENABLED: $AWS_TEST_ENABLED
67
76
AWS_STORAGE_BUCKET: $AWS_STORAGE_BUCKET
0 commit comments