Skip to content

Instantly share code, notes, and snippets.

View PHLAK's full-sized avatar
Coffee... always coffee...

Chris Kankiewicz PHLAK

Coffee... always coffee...
View GitHub Profile
@PHLAK
PHLAK / docker-compose.yaml
Created June 1, 2018 21:13
Plex Docker compose file
version: '2'
services:
plex-media-server:
container_name: plex-media-server
image: plexinc/pms-docker
environment:
PLEX_CLAIM: [YOUR_TOKEN_HERE]
TZ: America/Phoenix
network_mode: host
@PHLAK
PHLAK / README.md
Last active March 30, 2019 07:02
Restic Installation & Configuration

Install the pre-compiled Restic binary.

curl --silent --location https://github.com/restic/restic/releases/download/v0.9.4/restic_0.9.4_linux_amd64.bz2 | bzip2 --decompress \
| sudo tee /usr/bin/restic > /dev/null && sudo chmod +x /usr/bin/restic

Backup:

source /etc/restic/config && sudo -E restic backup --option b2.connections=10 --exclude-caches --exclude-file /etc/restic/excludes.list /home /etc

Cleanup:

@PHLAK
PHLAK / README.md
Created May 7, 2020 20:29
Custom Bash Color Scheme
Color Base16 (ish)
Dark Gray #4A4848
Red #AB4642
Green #95B56C
Yellow #F7CA88
Blue #7C98C2
Magenta #B68BBA
Cyan #86C1B9
Light Gray #D5D3D3