Please visit https://asistencia.in/blogs/1-mysql-5-5-installation-guide
Thank you
| #!/bin/bash | |
| set -e | |
| JAVA_HOME=${1-text} | |
| [ $# -eq 0 ] && { echo "Usage: sudo $0 \$(/usr/libexec/java_home -v '1.8*')" ; exit 1; } | |
| KEYSTORE=$JAVA_HOME/jre/lib/security/cacerts | |
| wget https://letsencrypt.org/certs/letsencryptauthorityx1.der | |
| wget https://letsencrypt.org/certs/letsencryptauthorityx2.der |
| FROM ubuntu:trusty | |
| RUN \ | |
| apt-get update \ | |
| && apt-get -y install gettext-base \ | |
| && apt-get clean \ | |
| && rm -rf /var/lib/apt/lists/* | |
| ENV VALUE=foo | |
| ENV VALUE1=boo | |
| COPY config.txt source_config.txt |
| TF=`mktemp` && wget "https://hndl.urbackup.org/Client/2.0.36/UrBackup%20Client%20Linux%202.0.36.sh" -O $TF && sh $TF; rm $TF | |
| urbackupclientctl add-backupdir -x -f -d /home | |
| urbackupclientctl add-backupdir -x -f -d /root | |
| urbackupclientctl add-backupdir -x -f -d /etc | |
| urbackupclientctl add-backupdir -x -f -d /var | |
Please visit https://asistencia.in/blogs/1-mysql-5-5-installation-guide
Thank you
| # Generate a unique private key (KEY) | |
| sudo openssl genrsa -out mydomain.key 2048 | |
| # Generating a Certificate Signing Request (CSR) | |
| sudo openssl req -new -key mydomain.key -out mydomain.csr | |
| # Creating a Self-Signed Certificate (CRT) | |
| openssl x509 -req -days 365 -in mydomain.csr -signkey mydomain.key -out mydomain.crt | |
| # Append KEY and CRT to mydomain.pem |
| FROM python:3.7 | |
| COPY requirements.txt /app/ | |
| WORKDIR /app | |
| RUN pip install -r requirements.txt | |
| COPY . /app | |
| CMD ["uvicorn", "--host", "0.0.0.0", "--reload", "--reload-dir", "/app", "app:app"] |
| --- | |
| # Page meta info, like heading, footer text and nav links | |
| pageInfo: | |
| title: Dashy | |
| description: Welcome to your new dashboard! | |
| navLinks: | |
| - title: GitHub | |
| path: https://github.com/Lissy93/dashy | |
| - title: Documentation | |
| path: https://dashy.to/docs |