-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcompose.yaml
More file actions
43 lines (40 loc) · 828 Bytes
/
compose.yaml
File metadata and controls
43 lines (40 loc) · 828 Bytes
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
# This is not yet fully functional
services:
db:
image: mariadb
volumes:
- db:/var/lib/mysql
environment:
MARIADB_RANDOM_ROOT_PASSWORD: yes
MARIADB_DATABASE: pandas3
MARIADB_USER: pandas3
MARIADB_PASSWORD: pandas3
command: --lower-case-table-names=1
ui:
build:
dockerfile: ui/Dockerfile
volumes:
- data:/data
environment:
PANDAS_DB_URL: jdbc:mariadb://db:3306/pandas3
ports:
- "8082:8082"
depends_on:
- db
gatherer:
build:
dockerfile: gatherer/Dockerfile
volumes:
- data:/data
environment:
PANDAS_DB_URL: jdbc:mariadb://db:3306/pandas3
HERITRIX_URL: http://heritrix:8443
ports:
- "8083:8083"
depends_on:
- db
volumes:
db:
driver: local
data:
driver: local