From 95239c62f98667502fd199b7102471f8eee010cf Mon Sep 17 00:00:00 2001 From: Mauricio Moldes Quaresma Date: Thu, 7 Nov 2024 14:16:18 +0100 Subject: [PATCH 1/2] Update README.md The docker compose (with a space) is a newer project to migrate compose to Go with the rest of the docker project. This is the v2 branch of the docker/compose repo. It's been first introduced to Docker Desktop users, so docker users on Linux didn't see the command. In addition to migrating to Go, it uses the compose-spec, and part of the rewrite may result in behavior differences. The original python project, called docker-compose, aka v1 of docker/compose repo, has now been deprecated and development has moved over to v2. To install the v2 docker compose as a CLI plugin on Linux, supported distribution can now install the docker-compose-plugin package. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 501b663..d76373a 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ You should have installed: If you are using a build with all the services in the same cluster, you can use: ```bash -docker-compose up -d --build +docker compose up -d --build ``` #### Load the data From fe094e66b3a32a84d795f8deae6798d9b92e3a15 Mon Sep 17 00:00:00 2001 From: Mauricio Moldes Quaresma Date: Mon, 11 Nov 2024 14:26:32 +0100 Subject: [PATCH 2/2] Update README.md updated all docker compose ( with space ) instructions at the README file --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d76373a..e2f588b 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ You can automatically fetch the ontologies and extract the filtering terms runni Check the logs until the beacon is ready to be queried: ```bash -docker-compose logs -f beaconprod +docker compose logs -f beaconprod ``` ## Usage @@ -250,7 +250,7 @@ In order to assign the security level for a dataset in your beacon, please go to You can edit some parameters for your Beacon v2 API that are in [conf.py](https://github.com/EGA-archive/beacon-production-prototype/tree/main/beacon/conf/conf.py). For that, edit the variables you see fit, save the file and restart the API by executing the next command: ```bash -docker-compose restart beaconprod +docker compose restart beaconprod ``` ## Managing source @@ -258,7 +258,7 @@ docker-compose restart beaconprod You can edit some parameters concerning entry types developed for your Beacon in [manage.py](https://github.com/EGA-archive/beacon-production-prototype/tree/main/beacon/source/manage.py). For that, change to True the entry types you want to have developed and shown with data for your beacon and execute the next command: ```bash -docker-compose restart beaconprod +docker compose restart beaconprod ``` ## Tests report