forked from activitypods/activitypods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
44 lines (41 loc) · 855 Bytes
/
docker-compose.yml
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
version: '3.5'
services:
fuseki:
image: semapps/jena-fuseki-webacl
container_name: fuseki
volumes:
- ./data/fuseki:/fuseki:z
ports:
- '3030:3030'
expose:
- '3030'
environment:
ADMIN_PASSWORD: 'admin'
fuseki_test:
image: semapps/jena-fuseki-webacl
container_name: fuseki_test
volumes:
- ./data/fuseki_test:/fuseki:z
ports:
- '3040:3030'
expose:
- '3040'
environment:
ADMIN_PASSWORD: 'admin'
mailcatcher:
image: dockage/mailcatcher:0.7.1
container_name: mailcatcher
ports:
- '1080:1080'
- '1025:1025'
restart: on-failure
redis:
image: redis
container_name: redis
expose:
- '6379'
ports:
- '6379:6379'
volumes:
- ./data/redis:/data
command: ['redis-server', '--appendonly', 'yes']