So, I want to use kompose up
on my docker-compose.yml which looks like this:
version: '3.6'
services:
db:
image: mysql:latest
restart: always
env_file:
- ./env/env_vars.env
volumes:
- ./db_data:/docker-entrypoint-initdb.d
But every time I do this, it returns
WARN Volume mount on the host "/home/test/Documents/test_pj/db_data" isn't supported - ignoring path on the host
What can I do to this?