From 90f6e70e905b8f618261205199cd238ef8fffab1 Mon Sep 17 00:00:00 2001 From: kinhdev24 Date: Mon, 26 Jan 2026 08:59:34 +0700 Subject: [PATCH 1/2] feat: Updated selfhost doc content --- src/content/getting-started/self-hosting/docker.mdx | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/content/getting-started/self-hosting/docker.mdx b/src/content/getting-started/self-hosting/docker.mdx index ddb09dc..3917fd6 100644 --- a/src/content/getting-started/self-hosting/docker.mdx +++ b/src/content/getting-started/self-hosting/docker.mdx @@ -362,7 +362,7 @@ If you are using an S3-compatible service (e.g., MinIO, DigitalOcean Spaces): - Use the provider’s access key and secret - Set the appropriate bucket name and region -##### Radis +##### Redis > Redis is used by SpaceDF for caching and fast data access. Set the Redis connection URL in the `.env` file. @@ -789,18 +789,12 @@ This value is used for redirects and callbacks. **Using Docker** ```bash copy DASHBOARD_AUTH_API=http://haproxy:3000 - -# This key must match the value configured on the backend. -SPACE_API_KEY=__SPACE_API_KEY__ ``` **External API** ```bash copy # Replace with your own values. DASHBOARD_AUTH_API=https://api.spacedf.example - -# This key must match the value configured on the backend. -SPACE_API_KEY=__SPACE_API_KEY__ ``` ##### Map Services @@ -863,11 +857,12 @@ Use ws (WebSocket) for browser-based clients. > This section explains how to start, check, and stop SpaceDF services using Docker Compose. ### Starting the services -From the directory that contains your `docker-compose.yml` file, run: +From the directory that contains your `./entrypoint.sh` file, run: ```bash copy # Start all services in the background -docker compose up -d +chmod +x entrypoint.sh +./entrypoint.sh ``` Docker will start all SpaceDF services in detached mode. From 9184c1061f1de4ee0aa9497d2b3e2a8505331459 Mon Sep 17 00:00:00 2001 From: Quynh-Nguyen Date: Mon, 26 Jan 2026 02:00:04 +0000 Subject: [PATCH 2/2] Trigger Build