バックグラウンドでコンテナを起動したい場合は今のコマンドを実行
make upd # docker-compose up -d --build
事前にイメージを構築したい場合は以下のコマンドを実行
make build # docker-compose build
構築済みのイメージからコンテナを起動する場合は以下のコマンドを実行
make up # docker-compose up --build
バックグラウンドで実行したい場合は以下:
make upd # docker-compose up -d --build
もし存在していない場合は、自動的に構築
実行中のコンテナのbashに入る時、以下のコマンドを実行
make login # docker-compose exec cc /bin/bash
containers, networks, images, and volumesを停止かつ削除するとき以下のコマンドを実行
make rm-all # docker-compose down --rmi all --volumes
コンテナのみを削除する場合は以下を実行
make rm # docker-compose rm -fs
コンテナとネットワークを削除する場合は以下を実行
make down # docker-compose down
This is an optional instruction. If it is skipped, logging stack trace will be skipped when Comutation Container is killed with signal.
Set core dump file destination using shell script.
./scripts/host_core_setting.sh # needs permission to write /proc/sys/kernel/core_pattern
Launch Computation Container executable using shell script.
/QuickMPC/scripts/wrapped_run.sh /QuickMPC/bazel-bin/computation_container