Skip to content

Instantly share code, notes, and snippets.

View nevmerzhitsky's full-sized avatar
🪀

Sergey Nevmerzhitsky nevmerzhitsky

🪀
  • 10:35 - 5h ahead
View GitHub Profile
@nevmerzhitsky
nevmerzhitsky / no-oom.sh
Last active April 10, 2018 09:15
Wrapper of a process without OOM watching
#!/bin/bash
# Works bad with termination of children processes when started via sudo. Please, run as super-user.
if [ "$1" == "" ]; then
echo "Usage: no-oom <a line to start new process>" 1>&2
exit 1
fi
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root" 1>&2
exit 1
fi
@nevmerzhitsky
nevmerzhitsky / docker-compose.override.yml
Created February 19, 2018 18:36
Top bind mount for development via Docker
version: "3.3"
services:
foo_container:
volumes:
- type: bind
source: ./foo_container/.bash_history
target: /root/.bash_history
@nevmerzhitsky
nevmerzhitsky / run.sh
Last active July 18, 2020 12:49
Run a docker container with a timeout
#!/usr/bin/env bash
TIMEOUT=1m
IMAGE=nginx:latest
CONTAINER_ID=
term_handler() {
# This catch both temporary and persistent containers
if docker inspect -f {{.State.Running}} $CONTAINER_ID > /dev/null; then
docker rm -f $CONTAINER_ID > /dev/null
fi
@nevmerzhitsky
nevmerzhitsky / restart-screen.sh
Created May 20, 2018 22:48
Restart a daemon screen with a script
set -e
OWN_PID=$$
SCREEN_TITLE=my-script
# Find all screen apps with the title, but skip yourself (this executed script)
SCREEN_PIDS=$(pgrep -f $SCREEN_TITLE | grep -v $OWN_PID | paste -s -d ,)
if [[ -n "$SCREEN_PIDS" ]]; then
# Kill all children processes of found screens
pkill -P $SCREEN_PIDS || true
@nevmerzhitsky
nevmerzhitsky / article.md
Last active May 26, 2018 11:52
Configuring local docker machine

If you using Docker Toolbox then your installation include local instance of Docker Machine. Usually the instance use driver and instance of Oracle VirtualBox application.

Tune disk size

By default driver for VirtualBox create a virtual machine with 20GB of disk space. When developing a new image (Dockerfile or Docker Compose), this volume quickly ends and it makes sense to immediately allocate several times more space on your hard drive.

To change various parameters of VirtualBox for Docker check options: https://docs.docker.com/machine/drivers/virtualbox/#options

Let's create a new docker machine with increased amount of disk space.

@nevmerzhitsky
nevmerzhitsky / docker-cmd.sh
Created July 24, 2018 08:56
Run a main process in docker container
#!/usr/bin/env bash
# Break script on any non-zero status of any command
set -e
export DOCKER_CMD_SLEEP
TASK_PID=0
term_handler() {
if ps -p $TASK_PID > /dev/null; then
@nevmerzhitsky
nevmerzhitsky / README.md
Created December 3, 2018 15:23
Limit memory of Docker Engine via systemd slice (cgroup)

Original: https://stackoverflow.com/a/46557336/3155344

Put content to /etc/systemd/system/limit-docker-memory.slice file. Then add a line "cgroup-parent": "limit-docker-memory.slice" to /etc/docker/daemon.json. Then restart the docker: systemctl daemon-reload; systemctl restart docker

@nevmerzhitsky
nevmerzhitsky / main.py
Last active March 23, 2019 16:41
Python - Terminate main thread from a child
import os
import signal
import threading
import time
def install_thread_exceptions_hook():
old_run = threading.Thread.run
def run(*args, **kwargs):
@nevmerzhitsky
nevmerzhitsky / run-oneoff-service.sh
Created July 4, 2020 18:42
Run a Docker Swarm service one-off
#!/usr/bin/env bash
set -e
config_file="$1"
stack_name="$2"
service_name="$3"
timeout="${4:-60}"
if [[ -z ${config_file} ]] || [[ -z ${stack_name} ]] || [[ -z ${service_name} ]]; then
exit 1
@nevmerzhitsky
nevmerzhitsky / commands1.sh
Last active June 16, 2024 08:08
Move a WSL image to a different disk (and other helpful commands)
# Type in Git Bash or Windows CMD
cd $A_TARGET_STORAGE
# Replace "Ubuntu-20.04" with the WSL image name you want to move
wsl --export Ubuntu-20.04 .\\Ubuntu-20.04.tar
wsl --unregister Ubuntu-20.04
wsl --import Ubuntu-20.04 .\\Ubuntu-20.04 .\\Ubuntu-20.04.tar --version 2