マウントポイント - CI/CD用語集の定義
マウントポイントは、ファイルシステム(ディスク、ネットワーク共有、containerのボリューム)がディレクトリツリーに接続されるディレクトリで、その内容をそのパスでアクセスできるようにします。
CIでは
containerのステップや volumes: キーは、ホストのパスをjobのファイルシステムにマウントします。「No space left on device」エラーは、マシン全体ではなく、いっぱいになった特定のマウント済みファイルシステムを指していることが多いです。マウントごとに df -h を確認してください。
関連ガイド
tmpfs - CI/CD Glossary Definitiontmpfs: tmpfs is a filesystem that lives in RAM (and swap) rather than on disk, so reads and writes are fast b…
Working Directory - CI/CD Glossary DefinitionWorking Directory: The working directory (current working directory, cwd) is the folder a process treats as t…
Symbolic Link - CI/CD Glossary DefinitionSymbolic Link: A symbolic link (symlink) is a special file that points to another path by name. Created with…