use beyondcode/laravel-dump-server in sail

김윤수·2023년 4월 28일
0

laravel

목록 보기
7/15

실행 변수를 확인할 수 있는 패키지
https://github.com/beyondcode/laravel-dump-server

watch server 실행

sail artisan dump-server

실제 코드 내

dump('1');

문제점

sail(docker 환경) 사용중에는 나오지 않는다.

해결책

  1. docker-compose.yml내 port를 열어준다
ports:
	- '${APP_PORT:-80}:80'
	- '${VITE_PORT:-5173}:${VITE_PORT:-5173}'
	- '${DUMP_PORT:-9912}:${DUMP_PORT:-9912}' # here!
  1. docker-compose.yml이 변경되면 build를 다시해야 함
sail build --no-cache

이제 잘 나온다.

profile
안녕하세요

0개의 댓글