ritarock’s blog

プログラミングとか映画とか趣味とか

2019-01-01から1年間の記事一覧

はてなの記事移行しました

今後はこちらで https://ritarock.github.io/ritarock.github.io

docker-composeでrailsとmysqlを使う

ディレクトリ構成 ./ ├── Dockerfile ├── docker-compose.yml ├── db_volume/ ├── mysql-confd/ │ └── default_authentication.cnf └── src/ ├── Gemfile └── Gemfile.lock ファイルの説明 Dockerfile railsのアプリ用のDockerfileを定義する mysqlと連携す…

pythonでlistから辞書を作る、辞書からjsonを作る

まずはlistから辞書を作る list_col = ['col1', 'col2', 'col3', 'col4', 'col5'] list_data = [1, 2, 3, 4, 5] dict_data = dict(zip(list_col, list_data)) print(dict_data) # {'col1': 1, 'col2': 2, 'col3': 3, 'col4': 4, 'col5': 5} 次に辞書からjson…