Moves docker compose examples into folders

This commit is contained in:
Spoffy
2024-07-23 14:05:06 +01:00
parent 29564dc7eb
commit bf76217de1
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# This is the simplest example that runs Grist, suitable for local testing.
# It is STRONGLY RECOMMENDED not to use this container in a way that makes it accessible to the internet.
# This setup lacks basic security or authentication.
# See https://support.getgrist.com for more information.
services:
grist:
image: gristlabs/grist:latest
environment:
# Use Python 3 instead of 2.
PYTHON_VERSION: 3
volumes:
# Where to store persistent data, such as documents.
- ./grist_local_data:/persist
ports:
- 8484:8484