pandas-docker/README.md

33 lines
997 B
Markdown
Raw Permalink Normal View History

2017-10-23 11:53:42 +02:00
# Docker container for Pandas
2021-10-11 12:48:56 +02:00
[pandas](http://pandas.pydata.org/) is an open source library providing data analysis tools for the Python programming language. This docker image contains pandas and is build on top of the official python slim image.
2017-10-23 11:53:42 +02:00
* [GitHub Repository with Dockerbuild files](https://github.com/felixlohmeier/pandas-docker)
* [Docker Hub with docker images](https://hub.docker.com/r/felixlohmeier/pandas/)
2021-10-11 12:48:56 +02:00
## Available Tags
2017-10-23 11:53:42 +02:00
2021-10-11 12:48:56 +02:00
* 1.3.3: Pandas 1.3.3, Python 3.9.7
* 0.20.3: Pandas 0.20.3, Python 3.6.3
2017-10-23 11:53:42 +02:00
2021-10-11 12:48:56 +02:00
## Usage
2017-10-23 11:53:42 +02:00
2021-10-11 12:48:56 +02:00
### Python console
2017-10-23 11:53:42 +02:00
2021-10-11 12:48:56 +02:00
> docker run -it --rm felixlohmeier/pandas:1.3.3
2017-10-23 11:53:42 +02:00
2021-10-11 12:48:56 +02:00
### Run a script
2017-10-23 11:53:42 +02:00
2021-10-11 12:48:56 +02:00
> docker run --rm -v "$PWD":/data:z -w /data felixlohmeier/pandas:1.3.3 python my-script.py
## Development
```
cd 1.3.3
docker build -t felixlohmeier/pandas:1.3.3 .
docker login --username felixlohmeier --password X docker.io
docker push felixlohmeier/pandas:1.3.3
```
Manually update README in [Docker Hub Repo](https://hub.docker.com/repository/docker/felixlohmeier/pandas)