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 d871cd2 commit bbff877Copy full SHA for bbff877
2 files changed
.gitignore
@@ -3,6 +3,8 @@
3
.cache
4
tmp/
5
site
6
+.env
7
+dev/.env
8
9
# intellij files
10
.idea
dev/docker-compose-integration.yml
@@ -18,7 +18,10 @@
18
services:
19
spark-iceberg:
20
image: pyiceberg-spark:latest
21
- build: spark/
+ build:
22
+ context: spark/
23
+ args:
24
+ MAVEN_MIRROR: ${MAVEN_MIRROR:-https://repo.maven.apache.org/maven2}
25
container_name: pyiceberg-spark
26
networks:
27
iceberg_net:
@@ -93,7 +96,10 @@ services:
93
96
"
94
97
hive:
95
98
image: pyiceberg-hive:latest
- build: hive/
99
100
+ context: hive/
101
102
+ MAVEN_MIRROR: ${MAVEN_MIRROR:-https://repo1.maven.org/maven2}
103
container_name: pyiceberg-hive
104
hostname: hive
105
0 commit comments