dockerizing Laravel + vue. i am getting database conenction issue SQLSTATE[HY000] [2006] MySQL server has gone away
this is my docker.yml file services: web: image: app-name:latest build: target: web context: . env_file: - .env ports: - "8000:80" volumes: - .:/var/www/html depends_on: - db db: image: mysql:8.0 ports: - 3307:3307 expose: - "3307" cap_add: - SYS_NICE command: --skip-grant-tables…