Skip to content

Instantly share code, notes, and snippets.

View Vitsen15's full-sized avatar

Andrey Vitsentovich Vitsen15

View GitHub Profile
@Vitsen15
Vitsen15 / .tmux.conf
Last active April 1, 2026 10:24
tmux configuration.
set -g default-terminal "tmux-256color"
set -as terminal-overrides ",xterm-256color:Tc"
set -g mouse on # Mouse movement in copy mode
#Prefix
set -g prefix C-a
# Key bindings
unbind %
bind | split-window -h
@Vitsen15
Vitsen15 / jenkins_docker-compose.yml
Created January 3, 2020 16:03
Jenkins inside docker
version: "3.7"
services:
jenkins:
container_name: jenkins
image: jenkinsci/blueocean
environment:
- DOCKER_HOST=tcp://docker:2376
- DOCKER_CERT_PATH=/certs/client
- DOCKER_TLS_VERIFY=1