awesome-compose icon indicating copy to clipboard operation
awesome-compose copied to clipboard

[fix] Error response from daemon: invalid mount config for type "bind": bind source path does not exist: /home/traefik/dockerWork/workpress/wordpress

Open luojiyin1987 opened this issue 1 year ago • 0 comments

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.

luojiyin1987 avatar Jan 15 '24 02:01 luojiyin1987