From 7bf0618d656841eb268f065acec8a8fea8e8b220 Mon Sep 17 00:00:00 2001 From: david Date: Mon, 6 Jan 2020 05:05:41 -0600 Subject: [PATCH] add docker XP --- resume.tex => Main.tex | 10 +++++----- render.sh | 9 +++++++++ 2 files changed, 14 insertions(+), 5 deletions(-) rename resume.tex => Main.tex (93%) create mode 100755 render.sh diff --git a/resume.tex b/Main.tex similarity index 93% rename from resume.tex rename to Main.tex index 9d188c8..d6b61f7 100755 --- a/resume.tex +++ b/Main.tex @@ -42,10 +42,10 @@ \item John Deere AMS Products Troubleshooting \item Git branching / Continuous Integration \item Comfortable using Linux - \item \href{https://daviddaily.dev/LaTeX}{\LaTeX \hspace{0.5mm} (what is being used to render this pdf)} - \item \href{https://daviddaily.dev/ahk}{AutoHotKey} - \item \href{https://daviddaily.dev/python}{Python} -% \item \href{https://daviddaily.dev/C\%2B\%2B}{C++ on Linux} + \item \href{https://daviddaily.dev/explore/repos?q=latex}{\LaTeX \hspace{0.5mm} (what is being used to render this pdf)} + \item \href{https://daviddaily.dev/explore/repos?q=ahk}{AutoHotKey} + \item \href{https://daviddaily.dev/explore/repos?q=python}{Python} + \item Docker (how gitea, nginx, and letsencrypt are installed) \end{itemize} } @@ -66,7 +66,7 @@ {Utilized a Raspberry Pi to function as DHCP server, block ads by DNS, and to run as an OpenVPN server. The base of this project is \href{https://pi-hole.net/}{PiHole}, a DNS ad blocker built to run on a Raspberry Pi} \ecvNewLine \ecvEBSub{Web Server} - {Set up and maintaining a CentOS 7 server to host websites, databases, and projects including AutoHotKey, \LaTeX \hspace{0.5mm} (the tool being used to render this pdf), and Python} + {Set up and maintaining a CentOS 7 server to host websites, databases, and projects including AutoHotKey, \LaTeX \hspace{0.5mm} (the tool being used to render this pdf), and Python. Utilized \href{https://www.docker.com/}{docker} to install \href{https://www.nginx.com/}{nginx}, \href{https://letsencrypt.org/}{letsencrypt}, and \href{https://gitea.io/}{gitea} after having installed them manually on a previous instance of the Web Server} \ecvNewLine \ecvEBSub{Self-Hosting a Website} {Configured the above CentOS 7 installation to host \href{https://daviddaily.dev}{a website (daviddaily.dev)} and its components by using Apache, PHP, and Ajax. SSH and SFTP are secured with private keys.} diff --git a/render.sh b/render.sh new file mode 100755 index 0000000..b93e320 --- /dev/null +++ b/render.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +cd "$(dirname "$0")" + +git pull + +/usr/bin/pdflatex -file-line-error -interaction nonstopmode Main.tex +rm Main.aux Main.out Main.toc +cp Main.pdf /home/david/fileshare/CV.pdf