-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
66 lines (60 loc) · 1.41 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
version: "3.3"
networks:
ws_net:
services:
ws_webstudio:
container_name: ws-core-full
image: 'geosiris/geosiris-webstudio:${CAMUNDA_PLATFORM_VERSION:-1.0.2}'
environment:
webstudio_enableUserDB: true
webstudio_enableWorkspace: true
workspace_databaseType: s3
s3_localstackEndpoint: http://my-workspace:9000
s3_accessKey: myAdminLogin
s3_secretKey: myAdminPassword
userdb_host: database-postgres
userdb_password: psql_password_Demo
networks:
ws_net:
aliases:
- webstudio
ports:
- "80:80"
- "443:443"
volumes:
- ws_store:/store
minio:
container_name: ws-workspace-storage-minio-s3
image: bitnami/minio:latest
environment:
MINIO_ROOT_USER: myAdminLogin
MINIO_ROOT_PASSWORD: myAdminPassword
ports:
- "9000:9000"
- "9001:9001"
networks:
ws_net:
aliases:
- my-workspace
volumes:
- ws_workspace_data_minio:/webstudio/minio/data
ws_dbuser:
container_name: ws-userdb
build: userDB/.
environment:
POSTGRES_PASSWORD: psql_password_Demo
networks:
ws_net:
aliases:
- database-postgres
ports:
- "8052:5432"
volumes:
- ws_dbuser_data:/webstudio/postgresql/data
volumes:
ws_workspace_data_minio:
external: false
ws_dbuser_data:
external: false
ws_store:
external: false