Skip to content

Commit 2d487e6

Browse files
committed
Fixed DEPLOYING instructions to integrate with Modulector and BioAPI
1 parent 5c60670 commit 2d487e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DEPLOYING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ To integrate with [Modulector][modulector] and/or [BioAPI][bioapi] using `docker
179179
name: 'multiomix-network'
180180
```
181181
3. The new versions of BioAPI and Modulector already come with service names suitable for integration with Multiomix. But **if you have any old version of those platforms**, change the Modulector and BioAPI configuration so that it does not conflict with the Multiomix configuration:
182-
1. Rename all the services in the Modulector and BioAPI `docker-compose.yml` files with the suffix `_modulector` and `_bioapi`. And rename `web` service to `modulector` or `bioapi` respectively. **NOTE:** do not forget to rename the `depends_on` parameters, and the database connection parameters to point to the new services names.
182+
1. Rename all the services in the Modulector and BioAPI `docker-compose.yml` files with the suffix `_modulector` and `_bioapi`. For example `mongo_bioapi`, `web_bioapi` and `nginx_bioapi` in the case of BioAPI. **NOTE:** do not forget to rename the `depends_on` parameters, and the database connection parameters to point to the new services names.
183183
2. Change the following block in the NGINX configuration files. In Modulector it's `config/nginx/conf.d/modulector.conf`, in BioAPI it's `/nginx/conf.d/default.conf`:
184184
```
185185
# Old
@@ -191,7 +191,7 @@ To integrate with [Modulector][modulector] and/or [BioAPI][bioapi] using `docker
191191
# New
192192
upstream web {
193193
ip_hash;
194-
server modulector:8000; # Or bioapi, dependening on which config file you're
194+
server web_modulector:8000; # Or web_bioapi, dependening on which config file you're editing
195195
}
196196
```
197197
4. Set Multiomix parameters:

0 commit comments

Comments
 (0)