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
[fix] Error response from daemon: invalid mount config for type "bind": bind source path does not exist: /home/traefik/dockerWork/workpress/wordpress
#412
Open
luojiyin1987 opened this issue
Jan 15, 2024
· 0 comments
· May be fixed by #413
The error message you encountered is from the Docker daemon, and it indicates that you tried to mount a directory binding from the local filesystem into a Docker container, but the specified source path does not exist
I run mkdir -p /home/traefik/dockerWork/workpress/wordpress to solve it .
I see some doc . I set wordpress volumes to solve it.
volumes:
- ./wordpress_data:/var/www/html
I hope it will help others.
The text was updated successfully, but these errors were encountered:
The error message you encountered is from the Docker daemon, and it indicates that you tried to mount a directory binding from the local filesystem into a Docker container, but the specified source path does not exist
I run
mkdir -p /home/traefik/dockerWork/workpress/wordpress
to solve it .I see some doc . I set wordpress volumes to solve it.
I hope it will help others.
The text was updated successfully, but these errors were encountered: