Skip to content

Commit

Permalink
Added readme to docker
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils Reimers committed Jul 11, 2017
1 parent 6b150e6 commit d6c6b02
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
**.pyc
**~

/**/.env/
**.project
**.pydevproject
**.settings
Expand Down
18 changes: 18 additions & 0 deletions 2017-07_Seminar/docker/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Docker Environment

This folder contains a dockerfile that installs a Python 3.6, Keras 2.0.5 and TensorFlow 1.2.1 environment, so that the scripts in the 2017-07 seminar folder can be executed.


## Cheatsheet

Build the docker container:
```
docker build . -t dl4nlp
```


Run the container and mount the current folder ${PWD} into the container:
```
docker run -it -v ${PWD}:/usr/src/app dl4nlp bash
```

0 comments on commit d6c6b02

Please sign in to comment.