mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
README: Mention the two possible docker images
This commit is contained in:
parent
70ed8553b3
commit
8cd9e40744
4
.github/workflows/docker.yml
vendored
4
.github/workflows/docker.yml
vendored
@ -13,10 +13,14 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
image:
|
image:
|
||||||
|
# We build two images, `grist-oss` and `grist`.
|
||||||
|
# See https://github.com/gristlabs/grist-core?tab=readme-ov-file#available-docker-images
|
||||||
- name: "grist-oss"
|
- name: "grist-oss"
|
||||||
repo: "grist-core"
|
repo: "grist-core"
|
||||||
- name: "grist"
|
- name: "grist"
|
||||||
repo: "grist-ee"
|
repo: "grist-ee"
|
||||||
|
# For now, we build it twice, with `grist-ee` being a
|
||||||
|
# backwards-compatible synoym for `grist`.
|
||||||
- name: "grist-ee"
|
- name: "grist-ee"
|
||||||
repo: "grist-ee"
|
repo: "grist-ee"
|
||||||
steps:
|
steps:
|
||||||
|
4
.github/workflows/docker_latest.yml
vendored
4
.github/workflows/docker_latest.yml
vendored
@ -26,10 +26,14 @@ jobs:
|
|||||||
python-version: [3.9]
|
python-version: [3.9]
|
||||||
node-version: [18.x]
|
node-version: [18.x]
|
||||||
image:
|
image:
|
||||||
|
# We build two images, `grist-oss` and `grist`.
|
||||||
|
# See https://github.com/gristlabs/grist-core?tab=readme-ov-file#available-docker-images
|
||||||
- name: "grist-oss"
|
- name: "grist-oss"
|
||||||
repo: "grist-core"
|
repo: "grist-core"
|
||||||
- name: "grist"
|
- name: "grist"
|
||||||
repo: "grist-ee"
|
repo: "grist-ee"
|
||||||
|
# For now, we build it twice, with `grist-ee` being a
|
||||||
|
# backwards-compatible synoym for `grist`.
|
||||||
- name: "grist-ee"
|
- name: "grist-ee"
|
||||||
repo: "grist-ee"
|
repo: "grist-ee"
|
||||||
steps:
|
steps:
|
||||||
|
19
README.md
19
README.md
@ -83,7 +83,8 @@ If you just want a quick demo of Grist:
|
|||||||
* Or you can see a fully in-browser build of Grist at [gristlabs.github.io/grist-static](https://gristlabs.github.io/grist-static/).
|
* Or you can see a fully in-browser build of Grist at [gristlabs.github.io/grist-static](https://gristlabs.github.io/grist-static/).
|
||||||
* Or you can download Grist as a desktop app from [github.com/gristlabs/grist-desktop](https://github.com/gristlabs/grist-desktop).
|
* Or you can download Grist as a desktop app from [github.com/gristlabs/grist-desktop](https://github.com/gristlabs/grist-desktop).
|
||||||
|
|
||||||
To get `grist-core` running on your computer with [Docker](https://www.docker.com/get-started), do:
|
To get the default version of `grist-core` running on your computer
|
||||||
|
with [Docker](https://www.docker.com/get-started), do:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
docker pull gristlabs/grist
|
docker pull gristlabs/grist
|
||||||
@ -117,6 +118,22 @@ You can find a lot more about configuring Grist, setting up authentication,
|
|||||||
and running it on a public server in our
|
and running it on a public server in our
|
||||||
[Self-Managed Grist](https://support.getgrist.com/self-managed/) handbook.
|
[Self-Managed Grist](https://support.getgrist.com/self-managed/) handbook.
|
||||||
|
|
||||||
|
## Available Docker images
|
||||||
|
|
||||||
|
The default Docker image is `gristlabs/grist`. This contains all of
|
||||||
|
the standard Grist functionality, as well as extra source-available
|
||||||
|
code for enterprise customers taken from the the
|
||||||
|
[grist-ee](https://github.com/gristlabs/grist-ee) repository. This
|
||||||
|
extra code is not under a free or open source license. By default,
|
||||||
|
however, the code from the `grist-ee` repository is completely inert and
|
||||||
|
inactive. This code becomes active only when an administrator enables
|
||||||
|
it by setting either `GRIST_ACTIVATION` or `GRIST_ACTIVATION_FILE`.
|
||||||
|
|
||||||
|
If you would rather use an image that contains exclusively free and
|
||||||
|
open source code, the `gristlabs/grist-oss` Docker image is available
|
||||||
|
for this purpose. It is by default functionally equivalent to the
|
||||||
|
`gristlabs/grist` image.
|
||||||
|
|
||||||
## The administrator panel
|
## The administrator panel
|
||||||
|
|
||||||
You can turn on a special admininistrator panel to inspect the status
|
You can turn on a special admininistrator panel to inspect the status
|
||||||
|
Loading…
Reference in New Issue
Block a user