-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcompose.yaml
49 lines (49 loc) · 881 Bytes
/
compose.yaml
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
---
name: aspace
services:
app:
depends_on:
- solr
- db
image: aspace-app
build:
context: ./app
env_file:
- ./app/.env
volumes:
- app-data:/archivesspace/data
- app-logs:/archivesspace/logs
ports:
- "8080:8080"
- "8081:8081"
- "8082:8082"
- "8089:8089"
- "8090:8090"
- "8091:8091"
- "8888:8888"
db:
image: mariadb:10.6
env_file:
- ./db/.env
command: [
'--character-set-server=utf8mb4',
'--collation-server=utf8mb4_unicode_ci',
'--log_bin_trust_function_creators=1'
]
volumes:
- db-data:/var/lib/mysql
ports:
- "3306:3306"
solr:
image: aspace-solr
build:
context: ./solr
volumes:
- solr-data:/var/solr
ports:
- "8983:8983"
volumes:
app-data:
app-logs:
db-data:
solr-data: