From 9e7a3bf02ae025b84af1e5b140337fe336161792 Mon Sep 17 00:00:00 2001 From: Joe Grigg Date: Thu, 31 Jul 2025 16:33:50 +0100 Subject: [PATCH] Updated to default to the latest (currently available on docker hub) 6.0 release candidate --- .env.example | 6 +----- compose.yml | 4 +--- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.env.example b/.env.example index 1ec1703..dabc83b 100644 --- a/.env.example +++ b/.env.example @@ -3,7 +3,7 @@ # COMPOSE_PROFILES=analytics,activitypub # Which Ghost version to run -GHOST_VERSION=5-alpine +GHOST_VERSION=6.0.0-rc.0-alpine # Public domain Ghost is going to run on DOMAIN=example.com @@ -27,11 +27,7 @@ DATABASE_PASSWORD=ghostpassword # both Traffic Analytics and ActivityPub ENABLE_DEVELOPER_EXPERIMENTS=false -# Developer Experiments must be enabled above -ENABLE_TRAFFIC_ANALYTICS=false - # ActivityPub -ENABLE_ACTIVITYPUB=false # If you'd prefer to self-host ActivityPub yourself uncomment the below line # ACTIVITYPUB_TARGET=activitypub:8080 diff --git a/compose.yml b/compose.yml index ef615c8..373dea0 100644 --- a/compose.yml +++ b/compose.yml @@ -22,7 +22,7 @@ services: ghost: # Do not alter this without updating the Tinybird Sync container as well - image: ghost:${GHOST_VERSION:-5-alpine} + image: ghost:${GHOST_VERSION:-6.0.0-rc.0-alpine} restart: always expose: - "127.0.0.1:${GHOST_PORT:-2368}:2368" @@ -38,8 +38,6 @@ services: database__connection__password: ${DATABASE_PASSWORD:?DATABASE_PASSWORD environment variable is required} database__connection__database: ghost enableDeveloperExperiments: ${ENABLE_DEVELOPER_EXPERIMENTS:-false} - labs__ActivityPub: ${ENABLE_ACTIVITYPUB:-false} - labs__trafficAnalytics: ${ENABLE_TRAFFIC_ANALYTICS:-false} tinybird__tracker__endpoint: https://${DOMAIN:?DOMAIN environment variable is required}/.ghost/analytics/api/v1/page_hit tinybird__adminToken: ${TINYBIRD_ADMIN_TOKEN:-} tinybird__workspaceId: ${TINYBIRD_WORKSPACE_ID:-}