Skip to content

Commit 9e74f07

Browse files
fix(docker): Redundant volume mount fails on Mac Docker Desktop (#15805)
1 parent 3aef295 commit 9e74f07

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docker/profiles/docker-compose.frontend.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ x-datahub-frontend-service-dev: &datahub-frontend-service-dev
3030
DATAHUB_ANALYTICS_ENABLED: ${DATAHUB_ANALYTICS_ENABLED:-true}
3131
volumes:
3232
- ../../datahub-frontend/build/stage/main:/datahub-frontend
33-
- ./monitoring/client-prometheus-config.yaml:/datahub-frontend/client-prometheus-config.yaml
33+
# Removed nested mount - causes virtiofs mountpoint error in Docker Desktop >= 4.42.0
34+
# The file is already in the Docker image, so this mount isn't needed.
35+
# If you need to override it for development, copy it to the build directory instead.
36+
# - ./monitoring/client-prometheus-config.yaml:/datahub-frontend/client-prometheus-config.yaml
3437

3538
services:
3639
frontend-quickstart:

0 commit comments

Comments
 (0)