-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (45 loc) · 1.03 KB
/
docker-compose.yml
File metadata and controls
51 lines (45 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
version: "3"
services:
hive-metastore:
hostname: hive-metastore
container_name: dmx-hive-metastore
image: dimajix/hive:latest
build:
context: .
args:
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
env_file:
- docker-compose.env
environment:
- http_proxy=${http_proxy}
- https_proxy=${https_proxy}
links:
- mariadb
hive-client:
hostname: hive-client
container_name: dmx-hive-client
image: dimajix/hive:latest
command: client
env_file:
- docker-compose.env
environment:
- http_proxy=${http_proxy}
- https_proxy=${https_proxy}
mariadb:
hostname: mariadb
container_name: dmx-mariadb
image: mariadb:latest
environment:
- http_proxy=${http_proxy}
- https_proxy=${https_proxy}
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=hive
- MYSQL_USER=hive
- MYSQL_PASSWORD=hive
volumes:
- /tmp/mariadb:/var/lib/mysql
networks:
default:
external:
name: dimajix