Skip to content
Discussion options

You must be logged in to vote

The issue you're encountering is a networking conflict: when you use network_mode: host for ClickHouse, the container shares the host's network stack directly, which means it no longer participates in Docker's internal networking and the published ports are discarded.(1)

This creates a problem because the Langfuse web and worker containers are trying to reach ClickHouse via Docker's internal network (e.g., http://clickhouse:8123), but ClickHouse is now only accessible via the host's network interface.

Solution Options

Option 1: Use host networking for all containers

If ClickHouse requires host networking for EC2 instance profile credentials, you could also set network_mode: host for the L…

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@jannikmaierhoefer
Comment options

@Subramanian-ERS
Comment options

@Steffen911
Comment options

@Subramanian-ERS
Comment options

Answer selected by Steffen911
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
3 participants