<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| { | |
| "version": "0.0.05", | |
| "initSources": [ | |
| { | |
| "initFragment": "receipt" | |
| }, | |
| { | |
| "sharedCatalogMembers": { | |
| "Root Group/Land suitability": { | |
| "isOpen": true, |
| yarn install | |
| python setup.py develop | |
| jupyter serverextension enable provbook --py --sys-prefix | |
| jupyter nbextension install provbook --py --sys-prefix --symlink | |
| jupyter nbextension enable provbook --py --sys-prefix | |
| jupyter notebook |
| // log in to the server | |
| // change directory | |
| cd /ubuntu/Storyteller | |
| // Stop the Storyteller server gracefully | |
| sudo docker-compose down | |
| sudo docker volume rm data | |
| // Pull the new images from dockerhub |
| // go to the directory with the clone of NLeSC-Storyteller/StoryTeller | |
| cd fork/Storyteller | |
| // update to the current version (to make sure we are correctly configured). | |
| git pull | |
| // Check if the upstream is defined | |
| git remote -v | |
| origin [email protected]:NLeSC-Storyteller/StoryTeller.git (fetch) | |
| origin [email protected]:NLeSC-Storyteller/StoryTeller.git (push) |
| // Go to https://hub.docker.com/u/nlescstoryteller/dashboard/ and log in | |
| click nlescstoryteller/storyteller | |
| 1. click "Build Settings" | |
| 2. click "Trigger" | |
| 3. click "Build Details" | |
| 4. wait for "Success" instead of "Queued" or "Building", this takes a _long_ time (30 minutes +) | |
| 5. click nlescstoryteller to return to https://hub.docker.com/u/nlescstoryteller/dashboard/ | |
| //Once nlescstoryteller/storyteller is done, we can parellalize the rest of the builds, |
| // ga naar de directory met een clone van NLeSC-Storyteller/StoryTeller | |
| cd fork/Storyteller | |
| // update naar de huidige versie, voor de zekerheid. | |
| git pull | |
| // Check of the upstream gedefinieerd is | |
| git remote -v | |
| origin [email protected]:NLeSC-Storyteller/StoryTeller.git (fetch) | |
| origin [email protected]:NLeSC-Storyteller/StoryTeller.git (push) |
| cd ~/workspace/fork/StoryTeller | |
| sync | |
| docker build -t nlescstoryteller/storyteller . | |
| cd ~/workspace/query-builder-preprocessing | |
| sync | |
| docker build -t nlescstoryteller/query-builder-preprocessing . | |
| cd ~/workspace/query-builder-server | |
| sync |
| winpty docker run -v data:/data -ti <DOCKER_IMAGE_TAG> //bin/bash |
| # stop running containers | |
| # remove containers | |
| # remove images | |
| # remove volumes | |
| docker stop $(docker ps -a -q) | |
| docker rm $(docker ps -a -q) | |
| docker rmi $(docker images -q) | |
| docker volume rm $(docker volume ls -qf dangling=true) |