This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
# pihole | |
pihole: | |
container_name: pihole | |
image: pihole/pihole:latest | |
restart: always | |
privileged: true | |
ports: | |
- "53:53/tcp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
################################################################################################################### | |
# Script to back up Bitwarden_rs db and attachments with rclone. Overall, this script should be preferred to | |
# bitwarden-backup.sh because it backs up all users and does not need to be run interactively. | |
# | |
# Note that this script does not encrypt the backup because Bitwarden stores it already encrypted. | |
# | |
# This script is specific to my setup. It had to have some workarounds due to permissions issues and other things. | |
# Please test it before you try it! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8] |