Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 919 Bytes

README.md

File metadata and controls

51 lines (40 loc) · 919 Bytes

docker_latex

Latexのコンパイル

  1. コンパイルしたいファイルを含むフォルダをsrc以下に配置
  2. make build(初回のみでよい)
    • exitでshellから抜け出す
  3. 以下のコマンドでコンパイル
    • pdfファイルが出力される
make latex folder=<フォルダ名(src以下)> target=<.texの名前(.texは含めない)>

make コマンド

コンテナのイメージファイル作成

make build

コンテナ生成+起動

make run

コンテナ起動(コンテナ停止しているものを起動)

make start

※make runではすでにあるコンテナは起動できない

コンテナに入る(インタラクティブシェル)

make shell

コンテナ停止(停止しないと削除できない)

make stop

コンテナ削除

make rm

githubへプッシュ

make git