https://github.com/alkaline-ml/pmdarima-docker
Base Docker images used with the pmdarima repo
https://github.com/alkaline-ml/pmdarima-docker
docker pmdarima pmdarima-docker
Last synced: about 2 hours ago
JSON representation
Base Docker images used with the pmdarima repo
- Host: GitHub
- URL: https://github.com/alkaline-ml/pmdarima-docker
- Owner: alkaline-ml
- Created: 2019-07-16T00:16:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-07T22:09:18.000Z (6 months ago)
- Last Synced: 2025-04-04T16:12:16.046Z (22 days ago)
- Topics: docker, pmdarima, pmdarima-docker
- Language: Makefile
- Homepage: http://github.com/tgsmith61591/pmdarima
- Size: 35.2 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pmdarima docker
[](https://circleci.com/gh/alkaline-ml/pmdarima-docker)
The images built here are used for one of two purposes:
1. As base images for testing and doc generation for the
[`pmdarima`](http://github.com/tgsmith61591/pmdarima) project. Note that
for this purpose, the only images that should be included are those that
help significantly reduce CI/CD build times.
2. To serve as pre-built base images with the `pmdarima` package already
installed. Images that serve this purpose will be tagged with the version of
`pmdarima` that they have installed.
### Pulling imagesAll images are pushed to the `alkalineml` prefix. You can pull whatever image you like
with `docker pull`, e.g.:```bash
$ docker pull alkalineml/pmdarima-doc-base:latest
$ docker pull alkalineml/pmdarima:latest
```Running the containers will start an `ipython` session by default:
```bash
$ docker run --rm -it alkalineml/pmdarima:latest
Python 3.7.4 (default, Sep 12 2019, 15:40:15)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.8.0 -- An enhanced Interactive Python. Type '?' for help.In [1]: import pmdarima as pm
```