@@ -64,22 +64,34 @@ $ docker-compose build --no-cache
6464
6565- Complete build
6666 - The first time you do this, it will complete the build process, for example, populating the required the databases
67- - When this is completed you will need to shutdown the services and re-start (see below)
6867 - The build takes a while because the vv databases are large. However, this is a significant improvement on previou
69- s versions. Install time is approximately 30 minutes (depending on the speed of you computer and internet connection)
70- - The build has completed when you see the message *** "Successfully built <container number string >"***
71- - example: "Successfully built fc9b83c8d21fa8bdebd52e0e87b9fde967933a043dace1a31916f8106110c8d8
72- "
73- - Then complete the following steps
68+ s versions. Build time is ~ 30 minutes (depending on the speed of you computer and internet connection)
69+ - The build has completed when you see the message *** "naming to docker.io/library/rest_variantvalidator_restvv"***
70+
7471``` bash
75- # Create the containers (This only takes a coule of minutes)
76- $ docker-compose up
72+ # If you have previously installed this software you will need to remove old SeqRepo databases
73+ $ rm -r -f ~ /variantvalidator_data/share/seqrepo/< Previos_SeqRepo_Directory>
74+
75+ # Create the vvta container (This takes ~10 minutes to complete)
76+ $ docker-compose up vvta
7777
78- # When you see the following message the containers have been created.
79- " vvta_1 | 2021-07-23 16:29:17.590 UTC [1] LOG: database system is ready to accept connections"
78+ # When you see the following message the container has been created.
79+ " database system is ready to accept connections"
8080
81- # Then perforn an initial shut down prior to re-launch and working with VarinatValidator in Docker
81+ # Then perforn shut down
8282ctrl + c
83+
84+ # Create the vdb container (This takes a few of minutes) and needs to be created first
85+ $ docker-compose up vdb
86+
87+ # When you see the following message the container has been created.
88+ " database system is ready to accept connections"
89+
90+ # Then perforn shut down
91+ ctrl + c
92+
93+ # Launch the full application
94+ $ docker-compose up
8395```
8496
8597### Build errors you may encounter
@@ -306,12 +318,15 @@ Update requires that the restvv container is deleted from your system. This is n
306318If you are only running rest_variantValidator in docker, we recommend deleting and re-building all containers
307319
308320``` bash
309- # Delete all containers
310- $ docker-compose down
321+ # Remove the specific containers
322+ $ docker-compose rm
323+
324+ # OR Delete all containers on your system
325+ $ docker-compose rm
311326$ docker system prune -a --volumes
312327```
313328
314- *** Once you have deleted the containers, got to Install and Build***
329+ *** Once you have deleted the containers, go to Install and Build***
315330
316331Alternatively, you may wish to try and force the containers to re-build without deleting
317332
0 commit comments