|
|
@@ -1,5 +1,5 @@ |
|
|
|
#  |
|
|
|
[](https://coveralls.io/github/Kosmorro/kosmorro?branch=master) [](https://pypi.org/project/kosmorro) [](https://discord.gg/TVX4MSKGaa) |
|
|
|
[](https://coveralls.io/github/Kosmorro/kosmorro?branch=master) [](https://pypi.org/project/kosmorro) [](https://discord.gg/TVX4MSKGaa)  |
|
|
|
|
|
|
|
A program that calculates your astronomical ephemerides! |
|
|
|
|
|
|
@@ -34,12 +34,34 @@ Kosmorro being at an early-stage development, Windows is not supported officiall |
|
|
|
|
|
|
|
#### Docker |
|
|
|
|
|
|
|
Get the official Kosmorro Docker image by running `docker pull kosmorro/kosmorro`. |
|
|
|
Kosmorro is available on [Docker Hub](https://hub.docker.com/r/kosmorro/kosmorro)! |
|
|
|
You can get it by running `docker pull kosmorro/kosmorro`. |
|
|
|
|
|
|
|
Now that you have the image, you can run it with `docker run -it kosmorro`. |
|
|
|
Now that you have the image, you can run it with `docker run -it kosmorro/kosmorro`. |
|
|
|
Run Kosmorro by executing `kosmorro` in the container. |
|
|
|
|
|
|
|
You can also run the image with the command: `docker run kosmorro kosmorro [args]`. |
|
|
|
You can also run the image with the command: `docker run kosmorro/kosmorro kosmorro [args]`. |
|
|
|
|
|
|
|
Note that for more convenience, you might add the following in your `.bashrc`/`.zshrc`/etc.: |
|
|
|
|
|
|
|
```bash |
|
|
|
alias kosmorro="docker run kosmorro/kosmorro kosmorro" |
|
|
|
``` |
|
|
|
|
|
|
|
##### Image versioning on Docker Hub |
|
|
|
|
|
|
|
By default, running `docker pull kosmorro/kosmorro` will download the `latest` tag by default, which corresponds to the last version of Kosmorro. |
|
|
|
If you prefer, you can also force pulling a specific version by specifying it after the `:` character: `docker pull kosmorro/kosmorro:[version]`. |
|
|
|
|
|
|
|
As of version 0.10, five kinds of tags are available: |
|
|
|
|
|
|
|
| Tag | Description | Example |
|
|
|
| --- | --- | --- |
|
|
|
| `unstable` | the current code in the `master` branch, for testing purpose | `kosmorro/kosmorro:unstable` |
|
|
|
| `latest` | the last version (equivalent to not specifying any tag) | `kosmorro/kosmorro:latest` |
|
|
|
| `x` | the last version in the `x` major version | `kosmorro/kosmorro:0`: will pull the  |
|
|
|
| `x.y` | the last version in the `x.y` minor version | `kosmorro/kosmorro:0.10`: will pull the  |
|
|
|
| `x.y.z` | the exact specified version | `kosmorro/kosmorro:0.10.0` |
|
|
|
|
|
|
|
### Development environment |
|
|
|
|
|
|
|