export

Usage: docker export [OPTIONS] CONTAINER

Export the contents of a container's filesystem as a tar archive

  --help             Print usage
  -o, --output=""    Write to a file, instead of STDOUT

docker export コマンドは、コンテナに関連づけられているボリュームに含まれる内容を出力しません。もしボリュームがコンテナ内にある既存ディレクトリの上位にマウントされている場合は、 docker export配下にある ディレクトリ出力しますが、ボリュームの内容は含みません。

詳細はユーザ・ガイドの データ・ボリュームのバックアップ、移行、レストア にある、ボリューム上のデータの出力についてをご覧ください。

$ docker export red_panda > latest.tar

または

$ docker export --output="latest.tar" red_panda