2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

DockerでVite(React)のサーバーが立ち上がっているのにアクセスできない

Posted at

はじめに

この記事は2022年8月にまとめていた「細かいつまずいたことをメモしておく(8月編)をそれぞれ投稿した内容になります
解決方法が最新でない可能性もありますのでご了承ください

問題

Dockerでviteプロジェクトのサーバーを起動して以下のログが出ているがアクセスできない

react  |   VITE v3.0.4  ready in 309 ms
react  | 
react  |   ➜  Local:   http://localhost:5173/

docker-compose.ymlでは以下の設定を行っている

docker-compose.yml
    ports:
      - "5173:5173"

解決方法

vite.config.jsを修正する

vite.config.js
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'

// https://vitejs.dev/config/
export default defineConfig({
  plugins: [react()],
  server: {
    host: true
  }
})

serverを追加したところアクセスできるようになった

react  |   VITE v3.0.4  ready in 288 ms
react  | 
react  |   ➜  Local:   http://localhost:5173/
react  |   ➜  Network: http://172.31.0.2:5173/

参考

2
1
0

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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?