-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
46 lines (45 loc) · 1.04 KB
/
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
45
46
version: "3.9"
services:
frontend:
image: ikcap/disk_frontend
ports:
- 8000:80
restart: on-failure:5
volumes:
- ./config.js:/usr/share/nginx/html/config.js
backend:
image: ikcap/disk_backend
ports:
- 8080:8080
restart: on-failure:5
volumes:
- ./tomcat-users.xml:/usr/local/tomcat/conf/tomcat-users.xml
- ./context.xml:/usr/local/tomcat/webapps/manager/META-INF/context.xml
- ./server.properties:/root/.disk/server.properties
- disk-storage:/root/.disk/storage
endpoint:
image: ikcap/fuseki_docker
ports:
- 3030:3030
volumes:
- fuseki_backups:/backups
- fuseki_databases:/fuseki-base/databases/
env_file:
- .env
restart: on-failure:5
wings:
image: "ikcap/wings:5.2.0"
environment:
WINGS_MODE: dind
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- wings:/opt/wings
ports:
- 7080:8080
restart: on-failure:5
volumes:
mysql:
fuseki_databases:
fuseki_backups:
wings:
disk-storage: