-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
37 lines (37 loc) · 1 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
version: "3.9"
volumes:
openbis-state:
services:
openbis:
image: openbis/debian-openbis:20.10.5-EA
environment:
- SERVER_HOST_PORT=localhost:8443
- GROUP_ID=1000
- CORE_PLUGINS=enabled-modules = dataset-uploader, dataset-file-search, xls-import, eln-lims, openbis-ng-ui, search-store, user-management-maintenance
volumes:
#Openbis state
- openbis-state:/home/openbis/openbis_state/
- ./openbis/service.properties:/home/openbis/openbis_state/as_etc/service.properties
ports:
- 8445:443
hostname: openbis
healthcheck:
test: ["CMD", "curl", "openbis:443"]
interval: 1m30s
timeout: 30s
retries: 5
start_period: 30s
openbis-intialiser:
depends_on:
openbis:
condition: service_healthy
build: ./configurator
volumes:
- ./configurator/instance.json:/usr/src/app/instance.json
app:
build: ./frontend/
volumes:
- ./frontend/app:/usr/app
ports:
- 8081:5173
- 8082:4173