Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update doc on how to build & run Docker image #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions doc/python/docker.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,29 @@
Run A Docker Image hosted on DockerHub
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

TODO.
.. code-block:: bash

docker pull nnabla/nnabla
docker run nnabla/nnabla python -c "import nnabla"

If it works, you should see

.. code-block:: bash

2017-07-03 02:52:51,435 [nnabla][INFO]: Initializing CPU extension...

Build Docker Image from source
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

TODO.
.. code-block:: bash

git clone [email protected]:sony/nnabla.git
cd nnabla
docker build -t nnabla -f docker/Dockerfile .
docker run nnabla python -c "import nnabla"

If it works, you should see

.. code-block:: bash

2017-07-03 02:52:51,435 [nnabla][INFO]: Initializing CPU extension...