-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* deployment diagram * edit
- Loading branch information
Showing
6 changed files
with
233 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# | ||
reveal.js-master/ | ||
# PlantUML output | ||
out/ | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@startyaml | ||
name: Docker Image CI | ||
|
||
on: | ||
push: branches: [ "main" ] | ||
pull_request: branches: [ "main" ] | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
uses: actions/checkout@v3 | ||
name: Build the Docker image | ||
run: "docker build ...." | ||
@endyaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
@startuml | ||
!pragma layout smetana | ||
|
||
cloud "GitHub\n" { | ||
card project [ | ||
Project | ||
---- | ||
Python app | ||
.... | ||
Dockerfile | ||
] | ||
|
||
card image [ | ||
Docker image | ||
---- | ||
Base image | ||
.... | ||
Project | ||
.... | ||
Dependencies | ||
] | ||
|
||
} | ||
|
||
cloud "Docker Hub\n" { | ||
card registry [ | ||
Container registry | ||
---- | ||
tag:latest | ||
.... | ||
tag:v1.1.0 | ||
.... | ||
tag v1.0.0 | ||
.... | ||
] | ||
} | ||
|
||
' thing | ||
together { | ||
cloud "Hosting service\n" { | ||
card container[ | ||
application | ||
container | ||
] | ||
} | ||
actor "http://myproject.app" as a | ||
} | ||
|
||
project -> image : " build " | ||
image --> registry : push | ||
registry -r-> container : " pull " | ||
container --> a | ||
@enduml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<https://learn.microsoft.com/en-us/azure/developer/python/tutorial-containerize-deploy-python-web-app-azure-04> |