docker-compose upを実行したら下記のエラーが出たので
brew install nginx を実行後もう一度docker-compose upをしましたがエラーが変わりませんでした。
わかる人がいましたらご教授おねがします。
Service 'web' failed to build: ADD failed: stat /var/lib/docker/tmp/docker-builder8755076/nginx.conf: no such file or directory
version: '3' services: app: build: . image:test/sample-web:dev environment: RAILS_ENV: development WEBPACKER_DEV_SERVER_HOST: 0.0.0.0 WEBPACKER_DEV_SERVER_PUBLIC: localhost:3035 WEBPACKER_DEV_SERVER_INLINE: "true" WEBPACKER_DEV_SERVER_HMR: "false" volumes: - .:/sample-web - public-data:/sample-web/public - tmp-data:/sample-web/tmp - log-data:/sample -web/log ports: - '3000:3000' - '3035:3035' stdin_open: true tty: true web: build: context: . dockerfile: ./docker/nginx/Dockerfile volumes: - public-data:/sample-web/public - tmp-data:/sample-web/tmp ports: - 80:80 depends_on: - app volumes: public-data: tmp-data: log-data:
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/10 07:29
2020/04/10 07:33
2020/04/10 07:52
2020/04/10 07:59 編集
2020/04/10 10:01
2020/04/10 10:34