Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/normalhuman01/conda-docker-sample

a python + conda + docker basic setup
https://github.com/normalhuman01/conda-docker-sample

Last synced: 17 days ago
JSON representation

a python + conda + docker basic setup

Awesome Lists containing this project

README

        

# Demo of how to use conda with docker

See the full commit history to see step by step how to use
conda with docker.

# Python + Docker: Hello world sample

Go to "python + docker" commit to see the "Hello World" sample
that uses the most basic configuration for Python + Docker

To build a Docker image do:

```
docker build -t my-docker-python .
```

And to run a docker container from the Docker image created do:
```
docker run my-docker-python
```

# Python + Conda + Docker: Numpy array sample

Go to "python + conda + docker" commit to see this sample.
Again you can use the same commands for build and run a Docker image.