Anyone knows how to deal with this problem? Looks ...
# docker
m
Anyone knows how to deal with this problem? Looks like the build process cannot access the database, even though it’s running. I know the DB is running, because I’ve got it in a different terminal and when I port-map it, I can connect to it from host. But for some reason
DOCKER_BUILDKIT=0 docker compose build calcom
still tells me it can’t connect 🤔
I notice that the README says
DOCKER_BUILDKIT=0 must be provided to allow a network bridge to be used at build time. This requirement will be removed in the future
, but I do use this command, so not sure why the network bridge might be still not working at build time
p
Build the database container first using the following command.
Copy code
docker compose up -d database