How to run stubby-docker
as systemd service docker.stubby.service
.
stubby-docker
uses stubby DNS Privacy stub resolver for most work and unbound DNS for caching.
How to run stubby-docker
as systemd service docker.stubby.service
.
stubby-docker
uses stubby DNS Privacy stub resolver for most work and unbound DNS for caching.
This is a mish-mash of instructions from:
Using Debian 9 Stretch.
# Build Air DC++ for Raspberry Pi Debian Stretch | |
# Uses a docker Raspberry Pi image to temporarily install necessary build tools and contain the mess | |
# | |
# This is not a script. This is shell commands that should be copy+pasted and tweaked to your setup | |
# | |
# This worked for using Raspberry Pi Debian Stretch and AirDC++ version 2.7.0b | |
# MMV | |
# | |
# run on Raspberry Pi |
#!/usr/bin/env bash | |
# | |
# run single instance of glances on the system as user glances. | |
# follows from https://gist.github.com/jtmoon79/1b5a806b3e71874542c21b1578156a42 | |
# designed for a Debian-based Linux | |
# | |
# place this file at /var/lib/glances/glances-start.sh | |
# chmod +x /var/lib/glances/glances-start.sh | |
# should look like: | |
# ls -l /var/lib/glances/glances-start.sh |
#!/usr/bin/env bash | |
# | |
# install glances system monitor onto a Debian-based System under user "glances" | |
# https://github.com/nicolargo/glances | |
# | |
# This creates user "glances" (which glances presumes to do) but for the purpose of install the program glances (and the | |
# required libraries) under permissions of user glances. This way, | |
# - glances programs are slightly better contained under user glances permissions | |
# - glances (and related programs) are not added to shared $PATH directories | |
# |