14 lines
337 B
Markdown
14 lines
337 B
Markdown
|
You might want to mount this whole repo into the docker container.
|
||
|
Also mount data locations.
|
||
|
|
||
|
Example container:
|
||
|
```bash
|
||
|
$ docker build . -t my_python
|
||
|
$ docker run \
|
||
|
-it \
|
||
|
-v /home/kristjan/git/cjvt-srl-tagging:/cjvt-srl-tagging \
|
||
|
-v /home/kristjan/some_corpus_data:/some_corpus_data \
|
||
|
my_python \
|
||
|
/bin/bash
|
||
|
```
|