diff --git a/config/config-aio.example.yaml b/config/config-aio.example.yaml index bfc07529..8be155f1 100644 --- a/config/config-aio.example.yaml +++ b/config/config-aio.example.yaml @@ -35,7 +35,3 @@ email: testing: false consoleUrl: consoleBase: "https://console.theopenlane.io" - -# analytics settings -posthog: - enabled: true diff --git a/docker/all-in-one/docker_entrypoint.sh b/docker/all-in-one/docker_entrypoint.sh index 52150d63..34128e5d 100644 --- a/docker/all-in-one/docker_entrypoint.sh +++ b/docker/all-in-one/docker_entrypoint.sh @@ -14,8 +14,10 @@ done /bin/redis-server --save 20 1 --loglevel warning --daemonize yes -# run the dbx service in the background -/bin/dbx serve --debug --pretty &! +# run the dbx service in the background if enabled +if [ $CORE_DBX_ENABLED = "true" ]; then + /bin/dbx serve --debug --pretty &! +fi # run the core service in the foreground /bin/core serve --debug --pretty \ No newline at end of file