Dockerのメモ

-d バックグラウンド実行
-p ホスト側ポート番号:コンテナ側ポート番号

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
% docker container run -d --rm -p 8080:80 php:5.4-apache
% docker container run -d --rm -p 8080:80 php:5.4-apache
% docker container run -d  --rm -p 8080:80 php:5.4-apache

とんぼ返りと犬っこがえり

実家の父親が、とんぼ返りと同じ意味で、「犬っこがえり」と言っていた。父は昭和12年、下閉伊郡生まれである。インターネットで検索しても、この言葉はヒットしない。父の造語であろうか?

犬の散歩で、広い畑で首輪のひもを外すと、犬は猛スピードでどこかに駆けていき、直ぐにUターンして戻ってくることが多かったので、確かにそのとおりだと思った。

休眠口座の復活

息子の大学進学が決まり、学費等の引き落としのため、ゆうちょ銀行の口座を作ることになった。

現在、ゆうちょ銀行の口座は1人につき1つしか作れないとのことだったが、初めて口座を開設するということで郵便局の窓口で胸を張って新規口座開設の申込書を提出した。しかし、数分後に窓口に呼び出され、同姓同名、同じ誕生日の人間の口座があるので同一人物であるかどうかの確認をさせて頂きたいと言われた。

郵便局の口座は作った記憶がない。

登録住所の照合のため、とりあえず、引越しの記憶を辿って住所を言って欲しいと窓口の担当者。社会人になってからの住所である埼玉、千葉、岩手県の市町村数ヶ所を答えたものの担当の方は首をひねり、「まだ、ありませんか?」のひと言。私はしばらく考え込み、そして急に記憶が蘇り、県名を叫んでしまった。

「・・・・石川県っ!」

大学時代、実家からの仕送りに郵便局を使っていたことを思い出したのだ。少し興奮気味にクイズ番組の回答者のように人差し指を立てて、自信を持って答えてしまったのが自分でも笑える。担当の方は続けた。

「その先は・・・?」

「石川郡野々市町、今は確か・・・野々市市ですね。扇が丘・・」

正解だった。

念のため実家に電話をかけて通帳の有無を確かめたが不明で、結局、通帳の再発行の申請を行うことになった。約30年間眠っていた口座。残高はあったとしても機械で出金できる1,000円未満であろう。間もなく通帳が届く。

Node.js(google-home-nortifier)を永続的に実行する

google-home-notifierが落ちても永続的に実行するように、foreverなるものを導入しました。参考にしたのは、こちらのサイトです。

【Node.js入門】foreverの使い方とデーモン化による永続化・自動起動まとめ! | 侍エンジニア塾ブログ(Samurai Blog) – プログラミング入門者向けサイト

確かに、killコマンドでnodeを殺しても、すぐに復活しているようです。

pi@raspberrypi:~ $ npm install -g forever
/home/pi/.nvm/versions/node/v10.15.1/bin/forever -> /home/pi/.nvm/versions/node/v10.15.1/lib/node_modules/forever/bin/forever
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.7 (node_modules/forever/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.7: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"arm"})
+ forever@0.15.3
added 242 packages from 153 contributors in 38.083s
pi@raspberrypi:~ $ which forever
/home/pi/.nvm/versions/node/v10.15.1/bin/forever
pi@raspberrypi:~/google-home/google-home-notifier $ pwd
/home/pi/google-home/google-home-notifier
pi@raspberrypi:~/google-home/google-home-notifier $ ls
LICENSE README.md example.js google-home-notifier.js node_modules package-lock.json package.json
pi@raspberrypi:~/google-home/google-home-notifier $ forever start example.js
warn: --minUptime not set. Defaulting to: 1000ms
warn: --spinSleepTime not set. Your script will exit if it does not stay up for at least 1000ms
info: Forever processing file: example.js
pi@raspberrypi:~/google-home/google-home-notifier $ forever logs
info: Logs for running Forever processes
data: script logfile
data: [0] example.js /home/pi/.forever/AL8B.log
pi@raspberrypi:~/google-home/google-home-notifier $ cat /home/pi/.forever/AL8B.log
*** WARNING *** The program 'node' uses the Apple Bonjour compatibility layer of Avahi.
*** WARNING *** Please fix your application to use the native API of Avahi!
*** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node>
*** WARNING *** The program 'node' called 'DNSServiceRegister()' which is not supported (or only supported partially) in the Apple Bonjour compatibility layer of Avahi.
*** WARNING *** Please fix your application to use the native API of Avahi!
*** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node&f=DNSServiceRegister>
Endpoints:
http://192.168.1.20:8091/google-home-notifier
https://bc0f269a.ngrok.io/google-home-notifier
GET example:
curl -X GET https://bc0f269a.ngrok.io/google-home-notifier?text=Hello+Google+Home
POST example:
curl -X POST -d "text=Hello Google Home" https://bc0f269a.ngrok.io/google-home-notifier
pi@raspberrypi:~/google-home/google-home-notifier $ ps -ef | grep nod[e]
pi 2181 1 4 17:39 ? 00:00:01 /home/pi/.nvm/versions/node/v10.15.1/bin/node /home/pi/.nvm/versions/node/v10.15.1/lib/node_modules/forever/bin/monitor example.js
pi 2188 2181 5 17:39 ? 00:00:02 /home/pi/.nvm/versions/node/v10.15.1/bin/node /home/pi/google-home/google-home-notifier/example.js
pi@raspberrypi:~/google-home/google-home-notifier $ kill 2188
pi@raspberrypi:~/google-home/google-home-notifier $ cat /home/pi/.forever/AL8B.log
*** WARNING *** The program 'node' uses the Apple Bonjour compatibility layer of Avahi.
*** WARNING *** Please fix your application to use the native API of Avahi!
*** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node>
*** WARNING *** The program 'node' called 'DNSServiceRegister()' which is not supported (or only supported partially) in the Apple Bonjour compatibility layer of Avahi.
*** WARNING *** Please fix your application to use the native API of Avahi!
*** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node&f=DNSServiceRegister>
Endpoints:
http://192.168.1.20:8091/google-home-notifier
https://bc0f269a.ngrok.io/google-home-notifier
GET example:
curl -X GET https://bc0f269a.ngrok.io/google-home-notifier?text=Hello+Google+Home
POST example:
curl -X POST -d "text=Hello Google Home" https://bc0f269a.ngrok.io/google-home-notifier
error: Forever detected script was killed by signal: SIGTERM
error: Script restart attempt #1
*** WARNING *** The program 'node' uses the Apple Bonjour compatibility layer of Avahi.
*** WARNING *** Please fix your application to use the native API of Avahi!
*** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node>
*** WARNING *** The program 'node' called 'DNSServiceRegister()' which is not supported (or only supported partially) in the Apple Bonjour compatibility layer of Avahi.
*** WARNING *** Please fix your application to use the native API of Avahi!
*** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node&f=DNSServiceRegister>
Endpoints:
http://192.168.1.20:8091/google-home-notifier
https://62f682b3.ngrok.io/google-home-notifier
GET example:
curl -X GET https://62f682b3.ngrok.io/google-home-notifier?text=Hello+Google+Home
POST example:
curl -X POST -d "text=Hello Google Home" https://62f682b3.ngrok.io/google-home-notifier
pi@raspberrypi:~/google-home/google-home-notifier $ ps -ef | grep nod[e]
pi 2181 1 1 17:39 ? 00:00:01 /home/pi/.nvm/versions/node/v10.15.1/bin/node /home/pi/.nvm/versions/node/v10.15.1/lib/node_modules/forever/bin/monitor example.js
pi 2230 2181 6 17:41 ? 00:00:01 /home/pi/.nvm/versions/node/v10.15.1/bin/node /home/pi/google-home/google-home-notifier/example.js
pi@raspberrypi:~/google-home/google-home-notifier $ kill 2230
pi@raspberrypi:~/google-home/google-home-notifier $ ps -ef | grep nod[e]
pi 2181 1 1 17:39 ? 00:00:01 /home/pi/.nvm/versions/node/v10.15.1/bin/node /home/pi/.nvm/versions/node/v10.15.1/lib/node_modules/forever/bin/monitor example.js
pi 2252 2181 68 17:41 ? 00:00:02 /home/pi/.nvm/versions/node/v10.15.1/bin/node /home/pi/google-home/google-home-notifier/example.js

GrovePiの光センサの値をGoogle home に喋らせる

GrovePiに接続した光センサの値をGoogle home に喋らせます。

SeedWikiで紹介されている grove_light_sensor.py のコードのうち、光センサの値の取得部分を利用し、google-home-notifier(Node.js)のURLを叩くためのコードを追加します。

google-home-notifierのURLを叩くために、次のサイトを参考にしました。

Pythonでcurlコマンドを使用する方法とは【メンターが回答】 | TechAcademyマガジン

作成したプログラムは次のとおりです。ファイル名は、speak_light_sensor.py です。

$ cat speak_light_seonsor.py
import time
import grovepi
import requests
url = 'http://localhost:8091/google-home-notifier'
# Connect the Grove Light Sensor to analog port A0
# SIG,NC,VCC,GND
light_sensor = 0
# Connect the LED to digital port D4
# SIG,NC,VCC,GND
led = 4
# Turn on LED once sensor exceeds threshold resistance
threshold = 10
grovepi.pinMode(light_sensor,"INPUT")
try:
# Get sensor value
sensor_value = grovepi.analogRead(light_sensor)
print("sensor_value = %d" %(sensor_value))
p = {'text':sensor_value}
req = requests.get(url, params=p)
print(req)
except:
print ("Error")

試行のために、あらかじめ google-home-notifier を起動しておきます。

pi@raspberrypi:~/google-home/google-home-notifier $ pwd
/home/pi/google-home/google-home-notifier
pi@raspberrypi:~/google-home/google-home-notifier $ ls
LICENSE README.md example.js google-home-notifier.js node_modules package-lock.json package.json
pi@raspberrypi:~/google-home/google-home-notifier $ node example.js
*** WARNING *** The program 'node' uses the Apple Bonjour compatibility layer of Avahi.
*** WARNING *** Please fix your application to use the native API of Avahi!
*** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node>
*** WARNING *** The program 'node' called 'DNSServiceRegister()' which is not supported (or only supported partially) in the Apple Bonjour compatibility layer of Avahi.
*** WARNING *** Please fix your application to use the native API of Avahi!
*** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node&f=DNSServiceRegister>
Endpoints:
http://192.168.1.20:8091/google-home-notifier
https://********.ngrok.io/google-home-notifier
GET example:
curl -X GET https://1c7faee4.ngrok.io/google-home-notifier?text=Hello+Google+Home
POST example:
curl -X POST -d "text=Hello Google Home" https://********.ngrok.io/google-home-notifier

作成したspeak_light_sensor.pyの実行結果は次のとおりです。Google homeがセンサの値を読み上げました。<Response [200]>は、google-home-notifierのHTTPレスポンスです。

pi@raspberrypi:~/GrovePi/GrovePi/Software/Python $ pwd
/home/pi/GrovePi/GrovePi/Software/Python
pi@raspberrypi:~/GrovePi/GrovePi/Software/Python $ python speak_light_seonsor.py
sensor_value = 785
<Response [200]>
pi@raspberrypi:~/GrovePi/GrovePi/Software/Python $