Skip to content

Instantly share code, notes, and snippets.

View akamas's full-sized avatar

SAnker akamas

View GitHub Profile
@akamas
akamas / create_docker_compose_basic_auth_string_for_traefik.sh Generator to create basic authentication string for traefik (docker-compose.yml and .env)
#!/bin/bash
SUDO=''
if (( $EUID != 0 )); then SUDO='sudo'; fi
echo "Basic auth for traefik >= v1.7"
read -p "User: " USER
read -p "Password: " PW
# Checks if htpasswd is available or install it otherwise
Docker + Traefik + Let's Encrypt + Github Repository
Using:
- Ubuntu 19.04
- Docker Engine 19.03
- Docker Compose 1.25.0-rc2
- Traefik v1.7.18 with dnsChallenge
- Traefik v2.0.1 with httpChallenge
--
- Github Registry
@akamas
akamas / 20-sysinfo
Created May 7, 2021 18:43 — forked from rroethof/20-sysinfo
mediabox-docker
#!/bin/bash
# /etc/update-motd.d/20-sysinfo
# get load averages
IFS=" " read LOAD1 LOAD5 LOAD15 <<<$(cat /proc/loadavg | awk '{ print $1,$2,$3 }')
# get free memory
IFS=" " read USED FREE TOTAL <<<$(free -htm | grep "Mem" | awk {'print $3,$4,$2'})
# get processes
PROCESS=`ps -eo user=|sort|uniq -c | awk '{ print $2 " " $1 }'`
PROCESS_ALL=`echo "$PROCESS"| awk {'print $2'} | awk '{ SUM += $1} END { print SUM }'`
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
@akamas
akamas / Home directories outside of ‘home’
Last active May 28, 2021 00:57
Home directories outside of ‘/home’
https://forum.snapcraft.io/t/home-directories-outside-of-home/19224
The snap daemon (snapd) requires a user’s home directory ($HOME) to be located under /home on the local filesystem. This requirement cannot currently be changed.
However, it is possible to bind mount an alternative $HOME location to /home to allow other locations to be found by snapd. This process is outlined below.
:information_source: A bind mount allows a mounted filesystem to be accessible from more than one location at the filesystem level. This is unlike a hard or symbolic link, for instance, which operate as special additional files that point to a destination.
Bind mount home directories
There are two steps to bind mount a home directory to a different location:
@akamas
akamas / Snapcraft segmentation fault with multipass
Created May 28, 2021 01:07
Snapcraft segmentation fault with multipass
### https://forum.snapcraft.io/t/snapcraft-segmentation-fault-with-multipass/19765
### my snapcraft.yml
name: myapp
base: core18
version: '0.1'
summary: myapp asdfasdfasdf
description: |
myapp asdfasdfasdf
@akamas
akamas / awesome-docker
Created May 29, 2021 03:03
360° View on docker
https://github.com/fhsinchy/awesome-docker
@akamas
akamas / Secure Docker - NGINX
Created May 29, 2021 05:07
Secure Docker - NGINX
https://github.com/bunkerity/bunkerized-nginx
@akamas
akamas / nginx.conf
Created May 29, 2021 05:08 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@akamas
akamas / Enabled Nested Virtualization in Hyper-V VMs
Created July 2, 2021 06:08
Enabled Nested Virtualization in Hyper-V VMs
Set-VMProcessor -VMName VM_NAME_HERE -ExposeVirtualizationExtensions $true