File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -389,16 +389,24 @@ rm env.yaml # clean up temporary environment file
389
389
390
390
<details >
391
391
392
- Build the Docker image
392
+ Given that this tool has a number of dependencies, it may be easier to run it in a Docker container.
393
+
394
+ Pull from [ Docker Hub] ( https://hub.docker.com/repository/docker/cford38/flowdock ) : ` docker pull cford38/flowdock:latest `
395
+
396
+
397
+
398
+ Alternatively, build the Docker image locally:
393
399
394
400
``` bash
395
401
docker build --platform linux/amd64 -t flowdock .
396
402
```
397
403
398
- Run the Docker container (and mount your local ` checkpoints/ ` directory).
404
+ Then, run the Docker container (and mount your local ` checkpoints/ ` directory)
399
405
400
406
``` bash
401
407
docker run --gpus all -v ./checkpoints:/software/flowdock/checkpoints --rm --name flowdock -it flowdock /bin/bash
408
+
409
+ # docker run --gpus all -v ./checkpoints:/software/flowdock/checkpoints --rm --name flowdock -it cford38/flowdock:latest /bin/bash
402
410
```
403
411
404
412
</details >
You can’t perform that action at this time.
0 commit comments