LoginSignup
0
2

More than 3 years have passed since last update.

【docker】yml ⇆ json を変換する

Last updated at Posted at 2020-10-29

以下のコマンドを実行

$ docker run -it -v $PWD:/mnt/ --rm python:3.7-alpine sh 

必要なライブラリなどをインストール

/ # cd mnt; apk add jq; pip install yq

ymlからjson,jsonからymlに変換する

$ yq "." [変換したいymlファイル] > [変換後のjsonファイル]
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2