実現したいこと
DockerでNginx+unicorn+rails+postgresqlの開発環境を構築したい
現状
構成として、Dockerコンテナにrailsアプリ用(Unicorn)、postgres用、nginx用の3つをローカルで作成しました。
ファイル構成は以下になります。
.(既存railsアプリmyapp)
├── Dockerfile
├── docker-compose.yml
├── Gemfile
├── Gemfile.lock
├── config
| └──datebase.yml
| └──unicorn.conf.rb
└── nginx
├──Dockerfile
└──nginx.conf
こちらの記事を参考にしましたhttps://qiita.com/E6YOteYPzmFGfOD/items/509dbabeb20bf2487283
エラー
Docker起動時に、アプリが立ち上がらず、ログを確認してみましたところ、以下のエラーが出現しました。
bundler: failed to load command: unicorn (/usr/local/bundle/bin/unicorn) Errno::ENOENT: No such file or directory @ dir_s_chdir - /Users/username/myapp
unicornの設定でapp_dirに代入するパスに、自身のアプリケーションまでのパスを記述しているのですが、上手く通らずエラーとなってしまいます。
unicornが起動しない原因として、該当するパスが間違っていることはわかったのですが、どのように修正したらいいのか調べてもわかりませんでした。
こちらを解決するためのアドバイスをいただけると幸いです。
宜しくお願い致します。
unicorn.conf.rb
$worker = 2 $timeout = 30 $app_dir = "/Users/username/myapp" 自身のアプリケーションまでのパス $listen = File.expand_path 'tmp/sockets/.unicorn.sock', $app_dir $pid = File.expand_path 'tmp/pids/unicorn.pid', $app_dir $std_log = File.expand_path 'log/unicorn.log', $app_dir worker_processes $worker working_directory $app_dir stderr_path $std_log stdout_path $std_log timeout $timeout listen $listen pid $pid preload_app true before_fork do |server, worker| defined?(ActiveRecord::Base) and ActiveRecord::Base.connection.disconnect! old_pid = "#{server.config[:pid]}.oldbin" if old_pid != server.pid begin Process.kill "QUIT", File.read(old_pid).to_i rescue Errno::ENOENT, Errno::ESRCH end end end after_fork do |server, worker| defined?(ActiveRecord::Base) and ActiveRecord::Base.establish_connection end
docker-compose.yml
version: '3' services: mailhog: image: mailhog/mailhog:v1.0.0 ports: - '8025:8025' db: image: postgres environment: - POSTGRES_PASSWORD=password volumes: - ./tmp/db:/var/lib/postgresql/data ports: - "5432:5432" web: tty: true stdin_open: true build: . env_file: my_env_file.env command: bundle exec unicorn -p 3000 -c /myapp/config/unicorn.conf.rb # command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'" environment: SMTP_HOST: mailhog SMTP_PORT: 1025 volumes: - .:/myapp:cached - tmp-data:/myapp/tmp/sockets - public-data:/myapp/public - /myapp/vendor - /myapp/tmp - /myapp/log - /myapp/.git ports: - "3000:3000" depends_on: - db - chrome - mailhog nginx: build: context: ./nginx dockerfile: Dockerfile ports: - 80:80 restart: always volumes: - tmp-data:/myapp/tmp/sockets - public-data:/myapp/public depends_on: - web chrome: image: selenium/standalone-chrome-debug:latest ports: - 5900:5900 volumes: public-data: tmp-data:
nginx/Dockerfile
FROM nginx:stable RUN rm -f /etc/nginx/conf.d/* COPY nginx.conf /etc/nginx/conf.d/myapp.conf CMD /usr/sbin/nginx -g 'daemon off;' -c /etc/nginx/nginx.conf nginx/nginx.conf upstream unicorn { server unix:/myapp/tmp/sockets/.unicorn.sock fail_timeout=0; } server { listen 80 default; server_name localhost; access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log; root /myapp/public; client_max_body_size 100m; error_page 404 /404.html; error_page 505 502 503 504 /500.html; try_files $uri/index.html $uri @unicorn; keepalive_timeout 5; location @unicorn { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_pass http://unicorn; } }
myapp/Dockerfile
FROM ruby:2.6.5 ENV TZ=Asia/Tokyo RUN apt-get update -qq && apt-get install -y nodejs postgresql-client RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \ && apt-get install -y nodejs RUN gem install reverse_markdown redcarpet RUN mkdir /myapp RUN apt-get install -y vim WORKDIR /myapp COPY Gemfile /myapp/Gemfile COPY Gemfile.lock /myapp/Gemfile.lock RUN bundle install COPY . /myapp # Add a script to be executed every time the container starts. COPY entrypoint.sh /usr/bin/ RUN chmod +x /usr/bin/entrypoint.sh ENTRYPOINT ["entrypoint.sh"] EXPOSE 3000 # Start the main process. CMD ["rails", "server", "-b", "0.0.0.0"] # CMD ["rails", "server", "-b", "0.0.0.0", "RAILS_ENV=production"]
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/24 05:55 編集
2020/08/24 06:04
2020/08/24 06:08
2020/08/24 06:29
2020/08/24 06:35
2020/08/24 06:46
2020/08/24 06:51