mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
dfb816888e
This adds three example docker-compose files: - A basic Grist instance backed by sqlite, with no additional services. - A Grist instance that uses Postgres, Redis and MinIO. - A Grist instance that uses OIDC authentication and traefik. These are intended to be customised by self-hosters for their own needs. All examples should work without any additional configuration.
9 lines
192 B
YAML
9 lines
192 B
YAML
services:
|
|
grist:
|
|
image: gristlabs/grist:latest
|
|
volumes:
|
|
# Where to store persistent data, such as documents.
|
|
- ${PERSIST_DIR}/grist:/persist
|
|
ports:
|
|
- 8484:8484
|