LoginSignup
3

More than 5 years have passed since last update.

LaradockのworkspaceからbrowserSyncを動かす

Posted at

laradock の workspace の port にマッピングを追加する。

docker-compose.yml
      extra_hosts:
        - "dockerhost:${DOCKER_HOST_IP}"
      ports:
        - "${WORKSPACE_SSH_PORT}:22"
        - "3000:3000"
        - "3001:3001"
      tty: true

あとは browserSync の proxy に nginx のコンテナ名を指定するだけでいい。

webpack.mix.js
if (process.env.MIX_BROWSER_SYNC) {
  mix.browserSync({
    proxy: 'nginx'
  })
}

参考

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3