@@ -16,7 +16,7 @@ To start all configured services using BaseX, run the following two commands:
16
16
17
17
```
18
18
# Build (if needed) and start all the containers in the background.
19
- docker-compose -f compas/docker-compose-basex.yml up -d --build
19
+ docker-compose --env-file compas/.env - f compas/docker-compose-basex.yml up -d --build
20
20
```
21
21
22
22
This command will first build the custom images for Keycloak and the Reverse Proxy and then start all containers.
@@ -50,7 +50,7 @@ To start all configured services using PostgreSQL, run the following two command
50
50
51
51
```
52
52
# Build (if needed) and start all the containers in the background.
53
- docker-compose -f compas/docker-compose-postgresql.yml up -d --build
53
+ docker-compose --env-file compas/.env - f compas/docker-compose-postgresql.yml up -d --build
54
54
```
55
55
56
56
This command will first build the custom images for Keycloak and the Reverse Proxy and then start all containers.
@@ -87,10 +87,6 @@ The following Keycloak attributes have been added:
87
87
- ** CRUD roles for the SCL Data Service** : Create, Read, Update and Delete roles have been added to the SCL Data Service client.
88
88
When interacting with the SCL Data Service, a JWT token needs to have certain roles before interaction is possible.
89
89
These roles are assigned to certain users (see below).
90
- - ** CoMPAS Group** : A CoMPAS demo group has been added.
91
- - ** A Demo User** : A Demo user without specific roles.
92
- - Username: 'user'
93
- - Password: 'user'.
94
90
- ** A SCL Data Editor** : A user with the roles 'Create', 'Read', 'Update' and 'Delete'. This way, it has read and write access to the SCL Data Service.
95
91
- Username: scl-data-editor
96
92
- Password: editor
0 commit comments