Skip to content

Instantly share code, notes, and snippets.

View d4vidsha's full-sized avatar
📝
Studying

David Sha d4vidsha

📝
Studying
View GitHub Profile
@d4vidsha
d4vidsha / jellyfin-docker-compose.yml
Created October 19, 2023 11:05
Jellyfin Docker compose file.
version: '3'
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
ports:
- '80:80'
- '81:81'
- '443:443'
volumes:
- ./data/:/data/
@d4vidsha
d4vidsha / bitwarden-docker-compose.yml
Created January 27, 2023 00:49
Bitwarden Docker compose file.
version: "2"
services:
bitwardenrs:
image: vaultwarden/server:latest
container_name: bitwarden
volumes:
- /srv/disk/Appdata/bitwarden:/data/
ports:
- 5080:80
restart: unless-stopped
@d4vidsha
d4vidsha / wireguard-docker-compose.yml
Created January 16, 2023 00:22
The Wireguard Docker Compose file which can be used with Portainer.
version: "2.1"
services:
wireguard:
image: lscr.io/linuxserver/wireguard
container_name: wireguard
cap_add:
- NET_ADMIN
- SYS_MODULE
environment:
- PUID=1000
@d4vidsha
d4vidsha / osx_bootstrap.sh
Last active June 12, 2022 03:29 — forked from codeinthehole/osx_bootstrap.sh
Script to install stuff I want on a new OSX machine
#!/usr/bin/env bash
#
# Bootstrap script for setting up a new OSX machine
#
# This should be idempotent so it can be run multiple times.
#
# Some apps don't have a cask and so still need to be installed by hand. These
# include:
#
# - Twitter (app store)