diff --git a/docs/conf.py b/docs/conf.py index fb198bf..e635403 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Dutch Techcentre for Life Sciences' # The full version, including alpha/beta/rc tags -release = '1.12.0' +release = '1.13.0' # -- General configuration --------------------------------------------------- diff --git a/docs/deployment/advanced-configuration.rst b/docs/deployment/advanced-configuration.rst index 418d7ca..1df7fbf 100644 --- a/docs/deployment/advanced-configuration.rst +++ b/docs/deployment/advanced-configuration.rst @@ -151,8 +151,8 @@ To enable FDP Index mode on your FDP server, just simply adjust your ``applicati # application.yml - fdp-index: - enabled: true + instance: + index: true Then for the FDP client, you need to use ``fairdata/fairdatapoint-index-client`` Docker image for browsing indexed FDPs and searching harvested metadata. In case you want to use your deployment both as FDP and FDP Index, you can deploy both FDP and FDP Index client applications. The configuration of both clients are identical. @@ -167,7 +167,7 @@ Then for the FDP client, you need to use ``fairdata/fairdatapoint-index-client`` # ... index_client: - image: fairdata/fairdatapoint-index-client:1.12.0 + image: fairdata/fairdatapoint-index-client:1.13 restart: always # ... @@ -308,13 +308,13 @@ have to set ``PUBLIC\_PATH`` ENV variable, in this example to version: '3' services: fdp: - image: fairdata/fairdatapoint:1.12.0 + image: fairdata/fairdatapoint:1.13 volumes: - ./application.yml:/fdp/application.yml:ro # ... other volumes fdp-client: - image: fairdata/fairdatapoint-client:1.12.0 + image: fairdata/fairdatapoint-client:1.13 ports: - 80:80 environment: diff --git a/docs/deployment/local-deployment.rst b/docs/deployment/local-deployment.rst index 03c392d..6df6679 100644 --- a/docs/deployment/local-deployment.rst +++ b/docs/deployment/local-deployment.rst @@ -14,10 +14,10 @@ Here is an example of the simplest `Docker Compose