-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
53 lines (50 loc) · 1.98 KB
/
docker-compose.dev.yml
File metadata and controls
53 lines (50 loc) · 1.98 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
51
52
53
services:
sampo-dashboard:
container_name: rocrate-sampo-dashboard
build:
context: .
dockerfile: .docker/sampo-ui/dev.dockerfile
restart: unless-stopped
tty: true
networks:
- web-network
ports:
- "8080:8080"
- "3001:3001"
volumes:
- node_modules:/usr/src/app/node_modules/
- ./src/client/translations/rocrate:/usr/src/app/src/client/translations/rocrate/
- ./src/client/components/perspectives/rocrate:/usr/src/app/src/client/components/perspectives/rocrate/
- ./src/client/components/main_layout/TopBar.js:/usr/src/app/src/client/components/main_layout/TopBar.js
- ./src/client/components/main_layout/TopBarInfoButton.js:/usr/src/app/src/client/components/main_layout/TopBarInfoButton.js
- ./src/client/components/main_layout/TopBarLanguageButton.js:/usr/src/app/src/client/components/main_layout/TopBarLanguageButton.js
- ./src/client/containers/SemanticPortal.js:/usr/src/app/src/client/containers/SemanticPortal.js
- ./src/client/img/rocrate:/usr/src/app/src/client/img/rocrate/
- ./src/client/favicon.ico:/usr/src/app/src/client/favicon.ico
- ./src/configs:/usr/src/app/src/configs/
- ./src/server/sparql/rocrate:/usr/src/app/src/server/sparql/rocrate/
- ./src/client/reducers/general/helpers.js:/usr/src/app/src/client/reducers/general/helpers.js
- ./src/client/components/App.js:/usr/src/app/src/client/components/App.js
jena-fuseki:
container_name: rocrate-jena-fuseki
image: stain/jena-fuseki
platform: ${DOCKER_DEFAULT_PLATFORM:-linux/x86_64}
restart: unless-stopped
tty: true
networks:
- web-network
ports:
- "3030:3030"
volumes:
- jena-fuseki-data:/fuseki
- ./.docker/fuseki/config.ttl:/fuseki/config.ttl
environment:
ADMIN_PASSWORD: ${FUSEKI_PASSWORD}
networks:
web-network:
name: rocrate-web-network
volumes:
jena-fuseki-data:
name: rocrate-data
node_modules:
name: rocrate-node_modules