お世話になります。
下記のソースでdocker-compose build
し、docker-compose up
で立ち上げたのですが、** (Mix) The task "phx.server" could not be found
と出てコンテナが終了します。
エラー文を検索し公式のissueを見つけたのですが具体的にどう書き直せばいいかがわかりませんでした。
https://github.com/bitwalker/alpine-elixir-phoenix/issues/12
試したほうがいいことをご教授いただけると幸いです。
log
1b_1 | 2019-03-21 16:05:50.753 UTC [1] LOG: database system is ready to accept connections 2phoenix_app | ** (Mix) The task "phx.server" could not be found 3phoenix_app exited with code 1
Dockerfile
1FROM elixir:1.7.4 2 3RUN mix local.hex --force \ 4 && mix archive.install --force hex phx_new 1.4.0 \ 5 && apt-get update \ 6 && curl -sL https://deb.nodesource.com/setup_10.x | bash \ 7 && apt-get install -y apt-utils \ 8 && apt-get install -y nodejs \ 9 && apt-get install -y build-essential \ 10 && apt-get install -y inotify-tools \ 11 && mix local.rebar --force 12 13WORKDIR /app 14EXPOSE 4000 15 16CMD ["mix", "phx.server"]
docker
1version: '3' 2services: 3 web: 4 build: . 5 container_name: phoenix_app 6 environment: 7 - MIX_ENV=dev 8 - PORT=4000 9 ports: 10 - "4000:4000" 11 depends_on: 12 - db 13 tty: true 14 stdin_open: true 15 volumes: 16 - .:/phoenix_app 17 command: mix phx.server 18 19 db: 20 image: postgres 21 environment: 22 - POSTGRES_USER=postgres 23 - POSTGRES_PASSWORD=postgres 24 - POSTGRES_HOST=db
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。