Skip to content

Commit

Permalink
[main] Fix: docker ci versions *.0 -> *.2
Browse files Browse the repository at this point in the history
  • Loading branch information
NayeonKeum committed Aug 2, 2023
1 parent ba29e31 commit 9413ce5
Show file tree
Hide file tree
Showing 61 changed files with 2,981 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/control-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
file: ./resources/images/control-ubuntu/Dockerfile
platforms: linux/amd64
push: true
tags: ryann3/control-ubuntu:3.0
tags: ryann3/control-ubuntu:3.2
2 changes: 1 addition & 1 deletion .github/workflows/professor-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
file: ./resources/images/professor-ubuntu/Dockerfile
platforms: linux/amd64
push: true
tags: ryann3/professor-ubuntu:4.0
tags: ryann3/professor-ubuntu:4.2
2 changes: 1 addition & 1 deletion .github/workflows/student-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
file: ./resources/images/student-ubuntu/Dockerfile
platforms: linux/amd64
push: true
tags: ryann3/student-ubuntu:4.0
tags: ryann3/student-ubuntu:4.2
Binary file added API/__pycache__/Dto.cpython-37.pyc
Binary file not shown.
Binary file added API/__pycache__/Dto.cpython-38.pyc
Binary file not shown.
Binary file added API/res/__pycache__/Dto.cpython-38.pyc
Binary file not shown.
20 changes: 20 additions & 0 deletions API/res/nginx-pod.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"apiVersion": "v1",
"kind": "Pod",
"metadata": {
"name": "nginx-test"
},
"spec": {
"containers": [
{
"name": "nginx",
"image": "nginx:1.7.9",
"ports": [
{
"containerPort": 80
}
]
}
]
}
}
20 changes: 20 additions & 0 deletions API/res/nginx-pod2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"apiVersion": "v1",
"kind": "Pod",
"metadata": {
"name": "nginx-test2"
},
"spec": {
"containers": [
{
"name": "nginx",
"image": "nginx:1.7.9",
"ports": [
{
"containerPort": 80
}
]
}
]
}
}
Loading

0 comments on commit 9413ce5

Please sign in to comment.