mgsmus hocam containerse girdiğimde
https://prnt.sc/QrA1BSsTDb24
laravel_vue_inertia_google_drive_clone girdiğimde şöyle geliyor
https://prnt.sc/1SjO9iPkX9Q6
https://prnt.sc/KyhdkL2nUdmu
Buna girdiğimde
https://prnt.sc/zSeQAiP_Nonw
böyle
https://prnt.sc/cHcNsnL4466I
şuna girdiğimde ise
https://prnt.sc/hfO8LlHWgRfz
böyle ayrıca
https://prnt.sc/oR7mPqpsPCMe
Error invoking remote method 'docker-start-container': Error: (HTTP code 400) unexpected - failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error mounting "/run/desktop/mnt/host/wsl/docker-desktop-bind-mounts/Ubuntu/728c5abd88297ed483b72b6aa12920abb3eb017b70069a65df9923d5a6e75c0e" to rootfs at "/docker-entrypoint-initdb.d/10-create-testing-database.sh": mount /run/desktop/mnt/host/wsl/docker-desktop-bind-mounts/Ubuntu/728c5abd88297ed483b72b6aa12920abb3eb017b70069a65df9923d5a6e75c0e:/docker-entrypoint-initdb.d/10-create-testing-database.sh (via /proc/self/fd/9), flags: 0x5000: not a directory: unknown: Are you trying to mount a directory onto a file (or vice-versa)? Check if the specified host path exists and is the expected type
şunu çalıştırdığımda yukarıdakı hatayı veriyor
https://prnt.sc/l36vzVN0dj0g
https://prnt.sc/cyPQMj-G1lIZ
docker-compose.yml
services:
laravel.test:
build:
context: ./vendor/laravel/sail/runtimes/8.2
dockerfile: Dockerfile
args:
WWWGROUP: '${WWWGROUP}'
image: sail-8.2/app
extra_hosts:
- 'host.docker.internal:host-gateway'
ports:
- '${APP_PORT:-80}:80'
- '${VITE_PORT:-5173}:${VITE_PORT:-5173}'
environment:
WWWUSER: '${WWWUSER}'
LARAVEL_SAIL: 1
XDEBUG_MODE: '${SAIL_XDEBUG_MODE:-off}'
XDEBUG_CONFIG: '${SAIL_XDEBUG_CONFIG:-client_host=host.docker.internal}'
IGNITION_LOCAL_SITES_PATH: '${PWD}'
volumes:
- '.:/var/www/html'
networks:
- sail
depends_on:
- mysql
mysql:
image: 'mysql/mysql-server:8.0'
ports:
- '${FORWARD_DB_PORT:-3306}:3306'
environment:
MYSQL_ROOT_PASSWORD: '${DB_PASSWORD}'
MYSQL_ROOT_HOST: '%'
MYSQL_DATABASE: '${DB_DATABASE}'
MYSQL_USER: '${DB_USERNAME}'
MYSQL_PASSWORD: '${DB_PASSWORD}'
MYSQL_ALLOW_EMPTY_PASSWORD: 1
volumes:
- 'sail-mysql:/var/lib/mysql'
- './vendor/laravel/sail/database/mysql/create-testing-database.sh:/docker-entrypoint-initdb.d/10-create-testing-database.sh'
networks:
- sail
healthcheck:
test:
- CMD
- mysqladmin
- ping
- '-p${DB_PASSWORD}'
retries: 3
timeout: 5s
networks:
sail:
driver: bridge
volumes:
sail-mysql:
driver: local