前提・実現したいこと
色々なサイトを参考にして下記Dockerfileを作成しましたが、
Dockerfileで環境変数として「RAILS_ENV=production」を指定しているため、
ローカル開発環境でもproduciton(本番)モードで実行されてしまいます。
本番環境と開発環境のDockerファイルは同じものを使用したく、
ローカル開発環境でのみdevelopment(開発環境)で実行したいのですが、
どのような方法がありますでしょうか?
該当のソースコード
Dockerfile
docker
1FROM ruby:2.7.5 2 3ENV RAILS_ENV=production 4 5RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ 6 echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \ 7 apt-get update -qq && apt-get install -y nodejs yarn postgresql-client 8WORKDIR /app 9COPY ./src /app 10RUN bundle config --local set path 'vendor/bundle' && bundle install 11 12# コンテナを起動するたびに実行されるスクリプトを追加 13COPY entrypoint.sh /usr/bin/ 14RUN chmod +x /usr/bin/entrypoint.sh 15ENTRYPOINT ["entrypoint.sh"] 16EXPOSE 3000 17 18COPY start.sh /start.sh 19RUN chmod 744 /start.sh 20CMD ["sh", "/start.sh"] 21
docker-compose.yml
docker
1version: '3' 2services: 3 db: 4 image: postgres 5 volumes: 6 - ./src/tmp/db:/var/lib/postgresql/data 7 environment: 8 - POSTGRES_PASSWORD=password 9 web: 10 build: . 11 command: bash -c "rm -f src/tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'" 12 volumes: 13 - ./src:/app 14 ports: 15 - "3000:3000" 16 depends_on: 17 - db 18

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。