You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To make installation easy, we recommend using Docker to install the other Biocommons
106
-
tools - [SeqRepo REST](https://github.com/biocommons/seqrepo-rest-service) and
105
+
To make installation easy, we recommend using [Docker](https://docs.docker.com/get-started/get-docker/)
106
+
to install the other Biocommons tools - [SeqRepo REST](https://github.com/biocommons/seqrepo-rest-service) and
107
107
[UTA](https://github.com/biocommons/uta). If you would like to use local instances of UTA,
108
108
see [UTA](https://github.com/biocommons/uta) directly. We do provide some additional
109
109
setup help [here](./docs/setup_help/).
@@ -113,9 +113,15 @@ Next, run the following commands:
113
113
```shell
114
114
docker volume create --name=uta_vol
115
115
docker volume create --name=seqrepo_vol
116
-
docker-compose up
116
+
dockercompose up
117
117
```
118
118
119
+
> [!NOTE]
120
+
> You must run all Docker commands from the root of the vrs-python repository (where `docker-compose.yml` lives). See [installing for development](#installing-for-development)
121
+
> for the clone commands.
122
+
> If you use Docker Compose v1, use `docker-compose` instead of `docker compose`.
123
+
> However, we do recommend [upgrading to v2](https://docs.docker.com/compose/releases/migrate/).
124
+
119
125
This should start three containers:
120
126
121
127
-[seqrepo](https://github.com/biocommons/seqrepo): downloads seqrepo into a
seqrepo-rest-service_1 | 2022-07-26 15:59:59 seqrepo_rest_service.__main__[1] INFO Using seqrepo_dir='/usr/local/share/seqrepo/2024-12-20' from command line
@@ -189,7 +195,7 @@ Here are some things to try.
189
195
````
190
196
ports:
191
197
- [your_port_number]:5432
192
-
- Repeat the `docker-compose up` command
198
+
- Repeat the `dockercompose up` command
193
199
- Repeat the command above to verify that there is now a docker command
194
200
listening at this port.
195
201
```
@@ -219,7 +225,7 @@ Here are some things to try.
219
225
````
220
226
ports:
221
227
- [your_port_number]:5000
222
-
- Repeat the `docker-compose up` command
228
+
- Repeat the `dockercompose up` command
223
229
- Test the SeqRepo REST API service with this new port
0 commit comments