1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

React + Dockerでの環境構築

Last updated at Posted at 2024-08-19

はじめに

サーバサイドで動くアプリを作りたいと思い、ReactとDockerで環境構築を目指しました。
下記のサイトを参考にしました。

行ったこと

今回はvideocollectorというプロジェクトフォルダを作成しました。

ターミナル
mkdir videocollector
cd videocollector

続いてdocker関連のファイルを作成しました。

ターミナル
touch Dockerfile
touch docker-compose.yml
Dockerfile
FROM node:lts 
WORKDIR /usr/src/app
docker-compose-yml
version: "3.9"

services:
  node:
    build: .
    volumes:
      - ./:/usr/src/app
    command: sh -c 'cd react-app && npm start'
    ports:
      - '3000:3000'

dockerイメージを作成しました。

ターミナル
docker-compose build

コンテナ内でReactアプリを作成しました。

ターミナル
docker-compose run --rm node sh -c 'npx create-react-app react-app'

コンテナ内でhttp://localhost:3000にアクセスし、
作成されたことを確認しました。

ターミナル
docker-compose up -d
1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?