Skip to content

Instantly share code, notes, and snippets.

View Rynoxx's full-sized avatar
🥝

Lukas Söder Rynoxx

🥝
  • Sweden
  • 03:15 (UTC +02:00)
View GitHub Profile
@Cremator
Cremator / vyos-docker-install.script
Last active June 21, 2022 01:46
Install docker on VyOS 1.3 rolling
# Install docker req
echo "deb http://deb.debian.org/debian buster main contrib non-free" >> /etc/apt/sources.list
sudo apt-get update
sudo apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common
# Add docker repo
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian buster stable"
sudo apt-get update
# Make persistent var for docker to live between vyos upgrades
sudo mkdir -p /config/user-data/docker
@higebu
higebu / docker_on_vyos_12.md
Last active March 30, 2022 21:12
Docker on VyOS 1.2
* Vagrantfile
```
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure('2') do |config|
config.vm.box = 'vyos/current'
config.vm.provider :libvirt do |libvirt|
libvirt.storage :file, size: '20G'
@XDRosenheim
XDRosenheim / getREKTson.rekt
Last active April 16, 2023 19:14
REKT Checklist
☐ Not REKT
☑ REKT
☑ Really Rekt
☑ REKTangle
☑ SHREKT
☑ REKT-it Ralph
☑ Total REKTall
☑ The Lord of the REKT
☑ The Usual SusREKTs
☑ North by NorthREKT
// Restify Server CheatSheet.
// More about the API: http://mcavage.me/node-restify/#server-api
// Install restify with npm install restify
// 1.1. Creating a Server.
// http://mcavage.me/node-restify/#Creating-a-Server
var restify = require('restify');
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active June 20, 2024 17:50
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname