-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose-geOrchestra.yml
More file actions
41 lines (38 loc) · 1.08 KB
/
docker-compose-geOrchestra.yml
File metadata and controls
41 lines (38 loc) · 1.08 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
# This is an example of production ready composition for geOrchestra
include:
- georchestra/geor-compose.yml
- georchestra/geor-compose.override.yml
services:
maelstro-front:
extends:
file: docker-compose-solo.yml
service: maelstro-front
volumes:
- georchestra_datadir:/etc/georchestra
ports: []
environment:
CUSTOM_SCRIPTS_DIRECTORY: /etc/georchestra/maelstro/scripts
MAELSTRO_BACK_HOST: maelstro-back
depends_on:
envsubst:
condition: service_completed_successfully
maelstro-back:
extends:
file: docker-compose-solo.yml
service: maelstro-back
volumes:
- georchestra_datadir:/etc/georchestra
depends_on:
envsubst:
condition: service_completed_successfully
environment:
MAELSTRO_CONFIG: /etc/georchestra/maelstro/config.yaml
DEMO_LOGIN: testadmin
DEMO_PASSWORD: testadmin
LOCAL_LOGIN: testadmin
LOCAL_PASSWORD: testadmin
PGHOST: "database"
PGPORT: "5432"
PGDATABASE: "georchestra"
PGUSER: "georchestra"
PGPASSWORD: "georchestra"