Skip to content

Instantly share code, notes, and snippets.

View initcron's full-sized avatar

Gourav Shah initcron

View GitHub Profile
@initcron
initcron / screen-stuff.md
Created October 4, 2018 04:54 — forked from gesellix/screen-stuff.md
screen and Docker for Mac

screen ~/Library/Containers//com.docker.docker/Data/vms/0/tty


screen -AmdS docker ~/Library/Containers//com.docker.docker/Data/vms/0/tty
screen -r docker
# enter, then disconnect with Ctrl-a d
screen -S docker -p 0 -X stuff $(printf root\\r\\n)
screen -r docker
@initcron
initcron / k8s-user-data.sh
Last active February 9, 2025 15:51
kubernetes user data script
#!/bin/bash
apt-get update
apt-get install -y git wget
# Install Docker
apt-get install -yq \
apt-transport-https \
ca-certificates \
curl \