This section outlines the necessary steps to run Dittofeed with docker compose.Watch the following video walkthrough to see how to set up Dittofeed with docker compose.First, clone Dittofeed’s github repository.
It’s important that you override the default environment variables in the .env file, for security reasons.
Dittofeed has dependencies on Postgres, and Clickhouse, with an optional Kafka dependency.
To start, create a local .env file.
Copy
Ask AI
touch .env
Then uncomment the following lines from the docker-compose.lite.yamlfile:
docker-compose.lite.yaml
Copy
Ask AI
# README: To add local env variables uncomment the following line and add a .env file in the root directoryenv_file: - .env
Populate this .env file with the following values, substituting placeholder values with your own. Dittofeed will work without these overrides, but it is recommended that you substitute your own credentials.
.env
Copy
Ask AI
DATABASE_USER=my-postgres-userDATABASE_PASSWORD=my-postgres-passwordCLICKHOUSE_USER=my-clickhouse-userCLICKHOUSE_PASSWORD=my-clickhouse-passwordPASSWORD=passwordSECRET_KEY=GEGL1RHjFVOxIO80Dp8+ODlZPOjm2IDBJB/UunHlf3c=# You need to set the following ENV variables when you are ready to deploy to a# non-local environment, with a different domain.# Used to generate links to the dashboard e.g. for unsubscribe links. Should not# include the /dashboard suffix.# DASHBOARD_URL="https://my-dittofeed-dashboard.com"# Used to issue requests to the api from the dashboard. Should not include the# /api suffix. Can be the same as the DASHBOARD_URL.# DASHBOARD_API_BASE="https://my-dittofeed-api.com"
See our documentation on Authentication Modes for instructions on how to generate a new SECRET_KEY.Finally, start Dittofeed’s services.
Copy
Ask AI
docker compose -f docker-compose.lite.yaml up -d
The above command will start Postgres and Clickhouse. You
may decide to use a third party vendor for these data stores. In that case,
you should disable the corresponding services in the
docker-compose.prod.yaml file.
You may be running other services on your host machine that conflict with Dittofeed’s ports. If this is the case, you can override the ports that Dittofeed binds to in the docker-compose.lite.yaml fileFirst, comment out the ports section in the service dependencies which don’t need to be exposed.