docker compose convert
読む時間の目安: 2 分
説明
Compose ファイルをプラットフォームの標準的な書式に変換します。
利用方法
$ docker compose convert SERVICES
追加説明
docker compose convert
render the actual data model to be applied on target platform. When used with Docker engine,
it merges the Compose files set by -f
flags, resolves variables in Compose file, and expands short-notation into
fully defined Compose model.
To allow smooth migration from docker-compose, this subcommand declares alias docker compose config
オプション
名前/省略形 | デフォルト | 説明 |
--format |
yaml |
出力書式を指定します(yaml | json)。 |
--hash |
Print the service config hash, one per line. | |
--no-interpolate |
Don't interpolate environment variables. | |
--profiles |
Print the profile names, one per line. | |
--quiet , -q |
設定を検証するのみであり、何も出力しません。 | |
--resolve-image-digests |
イメージタグをダイジェストに固定します。 | |
--services |
Print the service names, one per line. | |
--volumes |
Print the volume names, one per line. |
上位コマンド
コマンド | 説明 |
---|---|
docker compose | Docker Compose コマンド |
関連コマンド
コマンド | 説明 |
docker compose build | サービスのビルドまたは再ビルド |
docker compose convert | Compose ファイルをプラットフォームの標準的な書式に変換します。 |
docker compose cp | Copy files/folders between a service container and the local filesystem |
docker compose create | サービスコンテナーを生成します。 |
docker compose down | コンテナーとネットワークを停止して削除します。 |
docker compose events | コンテナーからのリアルタイムイベントを受信します。 |
docker compose exec | 実行中コンテナー内においてコマンドを実行します。 |
docker compose images | 生成されたコンテナーにおいて利用されているイメージを一覧表示します。 |
docker compose kill | サービスコンテナーを強制的に停止します。 |
docker compose logs | View output from containers |
docker compose ls | 実行中の Compose プロジェクトを一覧表示します。 |
docker compose pause | サービスを一時停止します。 |
docker compose port | Print the public port for a port binding. |
docker compose ps | コンテナーを一覧表示します。 |
docker compose pull | サービスイメージをプルします。 |
docker compose push | サービスイメージをプッシュします。 |
docker compose restart | Restart containers |
docker compose rm | 停止しているサービスコンテナーを削除します。 |
docker compose run | サービスに対するワンタッチ(one-off)のコマンドを実行します。 |
docker compose start | サービスを起動します。 |
docker compose stop | サービスを停止します。 |
docker compose top | 実行中プロセスを表示します。 |
docker compose unpause | 停止中サービスを再開します。 |
docker compose up | コンテナーを生成して起動します。 |