文責 mala
経緯:
- Meety退会しようと思ったがアカウントがなかったので、退会するためにアカウントを作ることにした。
免責:
- 気になった範囲ですぐに見つかったもののうち、悪用可能なものを記載しています。
- 好ましくないが仕様だろうというものは書いていません。
catatsuy メルカリSRE
mercari.go #11 - connpass https://mercari.connpass.com/event/148913/
📝 企業を調べる時のメモ書きです。
# The official MySQL (https://hub.docker.com/_/mysql/) supports only one MYSQL_DATABASE environment variable. | |
# By modifying the entrypoint and passing shell script, you can create multiple dbs without having to make a mysql image just for this purpose. | |
version: '3' | |
services: | |
# Some other service connecting to mysql | |
db: | |
image: mysql:5.6 |
cute(uzuki). | |
cute(miho). | |
cute(kyoko). | |
cute(kana). | |
cute(sachiko). | |
cute(sae). | |
cute(noriko). | |
cute(yuakri). | |
cute(yuka). | |
cute(karin). |
-- remap functions | |
local function keyCode(key, mods, callback) | |
mods = mods or {} | |
callback = callback or function() end | |
return function() | |
hs.eventtap.event.newKeyEvent(mods, string.lower(key), true):post() | |
hs.timer.usleep(1000) | |
hs.eventtap.event.newKeyEvent(mods, string.lower(key), false):post() | |
callback() |
version: '2' | |
services: | |
volume: | |
image: alpine:latest | |
entrypoint: /bin/true | |
volumes: | |
- ./etc/rundeck:/etc/rundeck | |
- ./var/rundeck:/var/rundeck | |
- ./var/lib/rundeck/.ssh:/var/lib/rundeck/.ssh | |
- ./var/lib/rundeck/logs:/var/lib/rundeck/logs |
# import config. | |
# You can change the default config with `make cnf="config_special.env" build` | |
cnf ?= config.env | |
include $(cnf) | |
export $(shell sed 's/=.*//' $(cnf)) | |
# import deploy config | |
# You can change the default deploy config with `make cnf="deploy_special.env" release` | |
dpl ?= deploy.env | |
include $(dpl) |