We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker-compose run web rails new . --force --no-deps --database=postgresql
Cannot start service db: OCI runtime create failed: container with id exists:
The text was updated successfully, but these errors were encountered:
docker ps -a でコンテナIDを調べて、削除する
docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 0b89bb310e3a postgres "docker-entrypoint.s…" 9 minutes ago Created 5432/tcp dockerbaukis2_db_1
docker rm 0b89bb310e3a
Sorry, something went wrong.
あるいは docker container prune で停止中のコンテナをすべて削除してもよいが、Webコンテナも削除されてしまうので、bundle install の実行が必要となる。
docker container prune
bundle install
No branches or pull requests
docker-compose run web rails new . --force --no-deps --database=postgresql
The text was updated successfully, but these errors were encountered: