Ensure your system packages are up to date:
sudo apt-get update
sudo apt-get upgrade
Install all required packages for building NGINX:
# First start seed with "docker stack deploy -c docker-stack.yml mariadb". | |
# Then start the nodes: docker service scale mariadb_node=3. | |
# Finally, seed should be removed: docker service scale mariadb_seed=0. | |
version: '3.6' | |
services: | |
seed: | |
hostname: "{{.Service.Name}}" |
#!/bin/bash | |
# Based on https://gist.github.com/jumanjiman/f9d3db977846c163df12 | |
sysdirs=" | |
/bin | |
/etc | |
/lib | |
/sbin | |
/usr | |
" | |
echo -e "[i] Remove crufty...\n /etc/shadow-\n /etc/passwd-\n /etc/group-" |
#!/bin/sh | |
# Based on https://gist.github.com/jumanjiman/f9d3db977846c163df12 | |
sysdirs=" | |
/bin | |
/etc | |
/lib | |
/sbin | |
/usr | |
" | |
echo -e "[i] Remove crufty...\n /etc/shadow-\n /etc/passwd-\n /etc/group-" |
#!/bin/bash | |
SCRIPTNAME=$(basename $0 .sh) | |
EXIT_SUCCESS=0 | |
EXIT_FAILURE=1 | |
TZ=Europe/Berlin | |
NETWORKNAME=eth0 | |
HOSTNAME=hostname | |
FQDN=domain.org | |
DOCKERCOMPOSE=1.21.2 |
version: '2' | |
services: | |
bigbluebutton: | |
container_name: bigbluebutton | |
hostname: bigbluebutton | |
image: bigbluebutton/bigbluebutton | |
ports: | |
- 80:80/tcp |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
SKRIPT=`readlink -f "${BASH_SOURCE[0]}"` | |
DIR=`dirname "${SKRIPT}"` | |
WORKDIR="/tmp" | |
if ls *.mp4 >/dev/null 2>&1 ; then | |
for x in $(find . -name "*.mp4"); do | |
cp $x ${WORKDIR} | |
done; |
#! /bin/bash | |
# Overwrite your SD card with Debian Jessie | |
# Default login: debian / debian | |
WORKDIR=$(mktemp -d /tmp/cubox-i.XXXXXXXXXX) | |
cd $WORKDIR/ | |
curl -LO https://github.com/SolidRun/ignition-imx6/archive/master.zip | |
unzip master | |
cd $WORKDIR/ignition-imx6-master/Debian | |
lsblk |