You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default docker-compose.yml has an incorrect ref to "clickhouse" service. Should this be removed? I have a clickhouse cluster deployed in AWS and I am providing the hostname via the Env vars:
Am I doing something wrong? The error message indicates that there is an issue with the COPY command in the Dockerfile. What would be the next steps to resolve this?
The text was updated successfully, but these errors were encountered:
I was able to get around this issue by going into the ./frontend and building the react project first. I think this step created the build directory which I see missing by default.
cd frontend
npm install
npm run build
It would be useful to update the project so that it auto-builds or update steps for explicitly creating the folder or doing this build.
I ran the command npm install and he following error appeared:
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: [email protected]
npm ERR! Found: @ant-design/[email protected]
npm ERR! node_modules/@ant-design/icons
npm ERR! @ant-design/icons@"^5.2.0" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer @ant-design/icons@"^4.6.0" from @ant-design/[email protected]
npm ERR! node_modules/@ant-design/charts
npm ERR! @ant-design/charts@"^1.4.2" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR!
npm ERR! For a full report see:
npm ERR! /home/username/.npm/_logs/2024-03-27T20_01_30_329Z-eresolve-report.txt
npm ERR! A complete log of this run can be found in: /home/username/.npm/_logs/2024-03-27T20_01_30_329Z-debug-0.log
The default docker-compose.yml has an incorrect ref to "clickhouse" service. Should this be removed? I have a clickhouse cluster deployed in AWS and I am providing the hostname via the Env vars:
After removing the reference of "clickhouse" service under the depends_on section, the docker instances fails to start with the following error:
Am I doing something wrong? The error message indicates that there is an issue with the COPY command in the Dockerfile. What would be the next steps to resolve this?
The text was updated successfully, but these errors were encountered: