Skip to content

Commit ee7de31

Browse files
committed
Added Docker section to README
1 parent f91c8a0 commit ee7de31

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,16 @@ The e-book "Python para Desenvolvedores" ("Python for Developers") aimed to fill
1919
This e-book was originally written in Portuguese and was translated by a small group of volunteers who do not speak English natively, so we ask for help from those who know the English language better, to refine the work, which we believe is a meaningful contribution to the Python users around the world.
2020

2121
Visit the e-book website: [http://ricardoduarte.github.io/python-for-developers/](http://ricardoduarte.github.io/python-for-developers/)
22+
23+
Run in docker
24+
-------------
25+
There is a dockerfile prepared to ease the deployment of the notebook.
26+
27+
To build and run the container run the following commands
28+
29+
```
30+
docker build -t python-for-developers:latest .
31+
docker run -itp 8888:8888 python-for-developers:latest
32+
```
33+
34+
After this the notebook will be available at `http://localhost:8888` with the token printed to the terminal.

0 commit comments

Comments
 (0)