Hi,
How do I get Tinybird analytics set up with my docker compose environment? I am using the latest version and my Fediverse integration started working with a normal update without me having to do anything extra to my compose file. However, the Tinybird analytics is not working.
How would I add the Tinybird analytics into my existing docker compose file? Here is my current setup:
version: '3.1'
services:
ghost:
image: ghost:alpine
restart: always
ports:
- HIDDEN:HIDDEN
environment:
enableDeveloperExperiments: 'true'
GHOST_ENABLE_NEST_FRAMEWORK: 1
database__client: HIDDEN
database__connection__host: HIDDEN
database__connection__user: HIDDEN
database__connection__password: HIDDEN
database__connection__database: HIDDEN
mail__transport: SMTP
mail__options__host: HIDDEN
mail__options__port: HIDDEN
mail__options__secure: HIDDEN
mail__options__requireTLS: HIDDEN
mail__options__auth__user: HIDDEN
mail__options__auth__pass: HIDDEN
mail__from: 'HIDDEN'
url: https://blog.joshuniverse.com
volumes:
- HIDDEN:HIDDEN
db:
image: mysql:latest
restart: always
environment:
MYSQL_ROOT_PASSWORD: HIDDEN
volumes:
- HIDDEN:HIDDEN
volumes:
HIDDEN:
external: true
name: HIDDEN
HIDDEN:
external: true
name: HIDDEN
Thank you so much!