-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
50 lines (48 loc) · 1.25 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
47
48
49
version: "3.9"
volumes:
#This stores the state of openbis, including logs
openbis-state:
certs:
db_data: null
worker_dependency_cache: null
networks:
local:
driver: bridge
services:
#Openbis
openbis:
image: openbis/debian-openbis:latest
environment:
#Here you can configure some openbis options for the AS
- SERVER_HOST_PORT=localhost:8443
- GROUP_ID=1000
#Enable the basic plugins
- CORE_PLUGINS=enabled-modules = dataset-uploader, dataset-file-search, xls-import, eln-lims, openbis-ng-ui, search-store, user-management-maintenance
volumes:
#External configuration files
# - type: bind
# source: ./services/openbis/as_service.properties
# target: /home/openbis/openbis_state/as_etc/service.properties
#Openbis state
- openbis-state:/home/openbis/openbis_state/
- certs:/home/openbis/openbis_state/cert/
ports:
- 8443:443
- 8444:8081
hostname: openbis
healthcheck:
test: [ "CMD", "curl", "openbis:443" ]
interval: 1m30s
timeout: 30s
retries: 5
start_period: 30s
networks:
- local
app:
build: ./pybis
networks:
- local
depends_on:
- openbis
volumes:
- ./pybis/app:/app