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
serverディレクトリに入ってmake runでいいようにした(このときDBのデータは吹き飛ぶので注意)
docker-composeを使う
$ cd server $ docker-compose -f ./docker-compose.dev.yaml up --build
これでmysqlと管理サーバの二つのコンテナが立ち上がる(詳しくはdocker-compose.dev.yamlを見てね) mysqlの中身を消したいときは、mysqlのコンテナを消して、mysqlと名前がついたボリュームを消す こんな感じ
$ docker container rm $(docker container ls -a |grep mysql | awk '{ print $1 }') $ docker volume rm $(docker volume ls |grep mysql | awk '{ print $2 }')
The text was updated successfully, but these errors were encountered:
これってデフォルトのIPアドレスとポートは0.0.0.0:8080であってますか?
Sorry, something went wrong.
No branches or pull requests
serverディレクトリに入ってmake runでいいようにした(このときDBのデータは吹き飛ぶので注意)
docker-composeを使う
$ cd server $ docker-compose -f ./docker-compose.dev.yaml up --build
これでmysqlと管理サーバの二つのコンテナが立ち上がる(詳しくはdocker-compose.dev.yamlを見てね)
mysqlの中身を消したいときは、mysqlのコンテナを消して、mysqlと名前がついたボリュームを消す
こんな感じ
The text was updated successfully, but these errors were encountered: