Skip to content

Instantly share code, notes, and snippets.

View hiroaki-yamamoto's full-sized avatar
The most important thing to understand about me is to understand myself.

Hiroaki Yamamoto hiroaki-yamamoto

The most important thing to understand about me is to understand myself.
View GitHub Profile

[検閲済み]

@hiroaki-yamamoto
hiroaki-yamamoto / handle_code_137_docker.md
Last active July 22, 2024 16:36
How to handle exit code 137 on docker

Problem

When you use docker with "multiple commands", you will write scripts like this:

run.sh

#!/bin/sh -e

pip install --upgrade poetry
poetry config settings.virtualenvs.create false
poetry install
@hiroaki-yamamoto
hiroaki-yamamoto / settings.json
Last active January 9, 2020 00:08
My vscode's settings.json
{
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "One Dark Pro",
"editor.fontSize": 12,
"editor.rulers": [80],
"editor.tabSize": 2,
"[python]": {
"editor.tabSize": 4
},
"atomKeymap.promptV3Features": true,