forked from MontpellierRessourcesImagerie/OMERO-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
65 lines (59 loc) · 1.45 KB
/
docker-compose.yaml
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
54
55
56
57
58
59
60
61
62
63
64
65
services:
database:
image: "postgres:12"
platform: linux/amd64
environment:
POSTGRES_USER: omero
POSTGRES_DB: omero
POSTGRES_PASSWORD: omero
networks:
- omero
volumes:
- "database:/var/lib/postgresql/data"
ports:
- "5432:5432"
omeroserver:
# This container uses the tag for the latest server release of OMERO 5
# To upgrade to the next major release, increment the major version number
depends_on:
- database
build: test/omero-server
platform: linux/amd64
environment:
CONFIG_omero_db_host: database
CONFIG_omero_db_user: omero
CONFIG_omero_db_pass: omero
CONFIG_omero_db_name: omero
CONFIG_omero_policy_binary__access: +read,+write,+image,+plate
CONFIG_omero_glacier2_IceSSL_Ciphers: "HIGH:!DH"
ROOTPASS: omero
networks:
- omero
ports:
- "6063:4063"
- "6064:4064"
volumes:
- "omero:/OMERO"
omeroweb:
depends_on:
- omeroserver
build: test/omero-web
platform: linux/amd64
environment:
OMEROHOST: omeroserver
volumes:
- type: bind
source: ./OMERO_metrics
target: /opt/omero/web/venv3/lib/python3.10/site-packages/OMERO_metrics
- type: bind
source: ./config_files/config.omero
target: /opt/omero/web/config/config.omero
networks:
- omero
ports:
- "5080:4080"
networks:
omero:
volumes:
database:
omero: