docker run -d --name alltube --log-opt max-size=50m --restart unless-stopped rudloff/alltube
{
# acme_ca https://acme-staging-v02.api.letsencrypt.org/directory
email [email protected]
}
docker run -d --name alltube --log-opt max-size=50m --restart unless-stopped rudloff/alltube
{
# acme_ca https://acme-staging-v02.api.letsencrypt.org/directory
email [email protected]
}
docker run -d --network host --name caddy -p 80:80 -p 443:443 -v $(pwd)/Caddyfile:/etc/caddy/Caddyfile -v $(pwd)/caddy_data:/data caddy/caddy
{
# acme_ca https://acme-staging-v02.api.letsencrypt.org/directory
email [email protected]
}
doesnt-exists.com {
docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=Passw0rd123!' -e 'MSSQL_PID=Express' -p 1434:1433 -d --name mssql mcr.microsoft.com/mssql/server:2017-latest-ubuntu
docker exec -it mssql /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P 'Passw0rd123!'
From the Python website, download the MSI version of Python you wish to install.
Then open your command prompt and use this command:
msiexec /a python-2.7.10.msi /qb TARGETDIR=C:\python27
Substitute python-2.7.10.msi, if you downloaded Python 3 and adjust your target directory to where you want it to go.
The /qb flag will give you a small dialog progress bar.
#!/bin/sh | |
base64 /dev/urandom | head -c 102400000 > urandom.txt | |
python -c 'import sys; a1="abcdefghijklmnopqrstuvwxyz0123456789"; a2=a1[::-1]; a=a1+a2[1:]; size=102400000; [sys.stdout.write(a) for i in range(1,size,len(a))]' > fast.txt | |
openssl rand 75000000 -base64 -out rand.txt |
Download LibreOffice
wget -t 0 -c http://download.documentfoundation.org/libreoffice/stable/5.4.0/deb/x86_64/LibreOffice_5.4.0_Linux_x86-64_deb.tar.gz
wget -t 0 -c http://download.documentfoundation.org/libreoffice/stable/5.4.0/deb/x86/LibreOffice_5.4.0_Linux_x86_deb.tar.gz
sudo apt-get install -y libxinerama1 libdbus-glib-1.2 libcairo2 libsm6
deb http://httpredir.debian.org/debian jessie main contrib non-free | |
deb-src http://httpredir.debian.org/debian jessie main contrib non-free | |
deb http://security.debian.org/ jessie/updates main contrib non-free | |
deb-src http://security.debian.org/ jessie/updates main contrib non-free | |
deb http://httpredir.debian.org/debian jessie-updates main contrib non-free | |
deb-src http://httpredir.debian.org/debian jessie-updates main contrib non-free |
/* this is the box (and the version) that we want to download from: https://app.vagrantup.com/debian/boxes/jessie64 */ | |
wget https://app.vagrantup.com/debian/boxes/jessie64/versions/8.9.0/providers/virtualbox.box -O debian-jessie64-8.9.0.box | |
/* add the box to vagrant */ | |
vagrant box add debian/jessie64 debian-jessie64-8.9.0.box | |
/* update box version */ | |
cd ~/.vagrant.d/boxes/debian-VAGRANTSLASH-jessie64/ | |
mv 0 8.9.0 |
CREATE TABLE master.forms | |
( | |
form_id serial NOT NULL, | |
code CHARACTER VARYING, | |
name CHARACTER VARYING, | |
description CHARACTER VARYING, | |
properties jsonb, | |
audit_trails jsonb, | |
stereotype CHARACTER VARYING, | |
sort_order INTEGER, |