diff --git a/docs/src/07_deployment_view.adoc b/docs/src/07_deployment_view.adoc index 22b45c27..39803293 100644 --- a/docs/src/07_deployment_view.adoc +++ b/docs/src/07_deployment_view.adoc @@ -56,39 +56,44 @@ Describe (usually in a combination of diagrams, tables, and text): For multiple environments or alternative deployments please copy and adapt this section of arc42 for all relevant environments. **** -_****_ +[plantuml, "infrastructure-level1", png] +---- +node AzureServer{ + node DockerContainer { + component WebApp + } +} -Motivation:: - -__ - -Quality and/or Performance Features:: +node UserDevice { + node WebBrowser { + component WebAppImage + } +} -__ - -Mapping of Building Blocks to Infrastructure:: -__ +Actor User -=== Infrastructure Level 2 +WebApp -d-> WebAppImage : "shows on user device" +WebAppImage <-l- User +---- -[role="arc42help"] -**** -Here you can include the internal structure of (some) infrastructure elements from level 1. - -Please copy the structure from level 1 for each selected element. -**** - -==== __ - -__ +Motivation:: -==== __ +In the development stage the application will be running on each developer machine using Docker containers. However, in the production stage the application will be running on a Docker environment hosted on Azure, which will be available 24 hours a day. Our goal is to learn how to use docker properly on a server open 24 hours a day. -__ +Quality and/or Performance Features:: -... +We have not tested the application performance so we can't analyze it yet -==== __ +Mapping of Building Blocks to Infrastructure:: -__ +[options="header",cols="1,3"] +|=== +| Element | Description + +| *_WebApp_* +| It is the frontend of our application. It runs the application. + +| *_Client Device_* +| It is the device of the user. Will show us the execution of the webapp. +|=== \ No newline at end of file