introduction: mention docker

This commit is contained in:
steveej 2016-08-30 14:44:17 +02:00
parent 779c628b5a
commit e9c340c418
2 changed files with 38 additions and 23 deletions

View file

@ -6,11 +6,12 @@
\usepackage{fancyhdr}
\usepackage{geometry}
\usepackage{multirow,tabularx,tabu}
\usepackage[xindy]{glossaries}
\usepackage[numberedsection,toc,numberline,nopostdot]{glossaries}
\newcommand{\topic}{A Declarative And Reproducible Approach To Application Deployment Via Container Images}
\newcommand{\authorOne}{Stefan Junker}
\newcommand{\authorOneInit}{SJ}
\newcommand{\authorOnestreet}{Alemannenstr. 7}
\newcommand{\authorOnezip}{78467}
\newcommand{\authorOnecity}{Konstanz}
@ -34,7 +35,7 @@
\geometry{a4paper, top=25mm, left=30mm, right=40mm, bottom=35mm, headsep=10mm, footskip=12mm}
\fancypagestyle{plain}{%
\fancyhead[L]{\small SJ}
\fancyhead[L]{\small \authorOneInit}
\fancyhead[R]{}
\fancyhead[C]{}
@ -57,16 +58,17 @@
\makeatother
\makenoidxglossaries
\newglossaryentry{Linux} {
\newglossaryentry{Linux}{
name = Linux,
description = {
is a generic term referring to the family of Unix-like
computer operating systems that use the Linux kernel
computer operating systems that use the Linux kernel
},
plural=Linuces
}
\newglossaryentry{computer} {
\newglossaryentry{computer}{
name = Computer,
description = {
is a programmable machine that receives input,
@ -75,19 +77,32 @@
}
}
\newglossaryentry{apci} {
\newglossaryentry{apc}{
name=Application Program Container,
description={
The broad term for the technology used to build, package, distribute and run an application program in isolation from the underlying and co-existing systems, wherein the level or technique of isolation can be different depending on the \gls{apcr}
}
}
\newglossaryentry{apci}{
name=Application Program Container Image,
description={is an archive file that contains all of the necessary binaries that are needed to execute an application and a manifest file that that contains metadata about the application. Alternatively to containing all the required binary files, the manifest file can declare dependencies to other application container images, which must then be available at runtime to execute the contained application}.
description={
An archive file that contains all of the necessary binaries that are needed to execute an application and a manifest file that that contains metadata about the application. Alternatively to containing all the required binary files, the manifest file can declare dependencies to other application container images, which must then be available at runtime to execute the contained application
}
}
\newglossaryentry{apcr} {
\newglossaryentry{apcr}{
name=Application Program Container Runtime,
description={is an application program or a set thereof that understands how to run the software inside an \gls{apci}}.
description={
An application program or a collection thereof that understands how to run the software inside an \gls{apci}
}
}
\newglossaryentry{} {
name=Application Program Container Runtime,
description={is an application program or a set thereof that understands how to run the software inside an \gls{apci}}.
\newglossaryentry{Docker}{
name=Docker,
description={
is a an \gls{apc} platform, with an application program of the same name
}
}
\begin{document}
@ -96,7 +111,7 @@
\pagestyle{plain}
%TODO: \include{cover}
\include{title}
\include{abstract.tex}
\include{abstract}
%TODO: \include{affidavit}
\cleardoublepage
\newcounter{roman_pagenumbers} % save page number
@ -108,12 +123,12 @@
\addtolength{\headwidth}{\marginparsep}
\headheight=15pt
\fancyfoot[R]{\thepage{}}
\fancyhead[L]{\small \autorlinit, \autorminit, \autorsinit}
\fancyhead[L]{\small \authorOneInit}
\fancyhead[R]{\nouppercase{\rightmark}}
\pagenumbering{arabic}
\pagestyle{fancy}
%TODO \include{acknowledgements}
%TODO \include{acknowledgments}
\tableofcontents
@ -121,6 +136,7 @@
This dissertation is original, unpublished, independent work by the author, \authorOne.
\part{Introduction}
\printnoidxglossary
\include{parts/introduction/introduction}
\part{Research}