- Bartender - Dozer
- DisplayBuddy - MonitorControl
- iStat - Stats
- .. - MeetingBar
--- | |
version: '3' | |
services: | |
vaultwarden: | |
image: vaultwarden/server:1.29.2 | |
container_name: vaultwarden | |
restart: always | |
environment: | |
WEBSOCKET_ENABLED: true # Enable WebSocket notifications. |
FROM ubuntu:18.04 as base | |
RUN apt update && \ | |
apt upgrade -y && \ | |
apt install -y libc6 libcap2 libconfig9 libwrap0 \ | |
debconf init-system-helpers adduser lsb-base update-inetd | |
FROM base as build | |
RUN apt install -y libwrap0-dev libconfig-dev libpcre3-dev git | |
RUN git clone https://github.com/yrutschle/sslh.git | |
RUN cd sslh && \ |
version: '3.7' | |
services: | |
adguard-home: | |
container_name: adguard-home | |
image: adguard/adguardhome:v0.104.1 | |
restart: always | |
cap_add: | |
- NET_ADMIN | |
volumes: |
FWIW: I'm not the author of the content presented here (which is an outline from Edmond Lau's book). I've just copy-pasted it from somewhere over the Internet, but I cannot remember what exactly the original source is. I was also not able to find the author's name, so I cannot give him/her the proper credits.
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
#!/bin/bash | |
# more info: | |
# https://support.sectigo.com/articles/Knowledge/Sectigo-AddTrust-External-CA-Root-Expiring-May-30-2020 | |
# https://www.reddit.com/r/linux/comments/gshh70/sectigo_root_ca_expiring_may_not_be_handled_well/ | |
apt-get update | |
apt-get install --reinstall ca-certificates | |
sed -i '/AddTrust_External_Root.crt/d' /etc/ca-certificates.conf | |
rm /usr/share/ca-certificates/mozilla/AddTrust_External_Root.crt | |
update-ca-certificates -f -v |
# Midnight Commander magic | |
if [ -f /usr/local/opt/midnight-commander/libexec/mc/mc-wrapper.sh ]; then | |
alias mc='. /usr/local/opt/midnight-commander/libexec/mc/mc-wrapper.sh' | |
elif [ -f /usr/lib/mc/mc-wrapper.sh ]; then | |
alias mc='. /usr/lib/mc/mc-wrapper.sh' | |
fi |
Find the original here article here: Devops Best Practices
DevOps started out as "Agile Systems Administration". In 2008, Andrew Shafer did a talk called "Agile Infrastucture" addressing issues around involving more of the company in the same disciplines as programmers.
In 2009, Patrick Debois created "DevOpsDays" conference to help to bring it to light. However, it wouldn't begin to trend until about 2010, when people would begin to describe it as a standalone discipline.
Today, DevOps goes beyond just developers, systems administration and infrastructure, its about [dev, ops, agile, cloud