티스토리 뷰

1. https://tommypagy.tistory.com/587

 

쿠버네티스 전체구조도 (성능테스트, 모니터링)

오픈나루 참조 : https://www.youtube.com/watch?v=HNI3Rt-z-6g

tommypagy.tistory.com

 

2. OKD 대시보드 환경 

 

OKD.io - OKD.io

Built around a core of OCI container packaging and Kubernetes container cluster management, OKD is also augmented by application lifecycle management functionality and DevOps tooling. OKD provides a complete open source container application platform. OKD

www.okd.io

3. War 배포

4. 웹어플리케이션 아키텍쳐및 기본개념


 

웹 애플리케이션 아키텍쳐 기본 개념 - CLIPSOFT

작성자 : 조성철 차장   Web Application Architecture 기본 개념     웹(Web) 기반 프로젝트를 수행하면서 그 구조에 대한 기본 지식이 없는 경우 엉뚱한 실수를 범하게 됩니다. 점점 개발 영역이 세분화

clipsoft.co.kr

5. WEB WAS 전체 아키텍쳐

 

[Web Application Server] Architecture (WEB / WAS 부문)

본 포스팅은 Web&WAS 도입을 위한 아키텍처 가이드입니다.Web&WAS를 도입하고자 하는 사이트에 제언해 드릴수 있는 다양한 아키텍쳐를 살펴보겠습니다. 1. 아키텍쳐 설계 시 고려사항 항목고려사항

waspro.tistory.com

6. Web Server 와 WAS Server 차이점

 

[Web] Web Server와 WAS의 차이와 웹 서비스 구조 - Heee's Development Blog

Step by step goes a long way.

gmlwjd9405.github.io

7. 도커 push/pull/run 이란 (아래바로가기)

 

 

Docker #4. 도커(Docker) Hub Push / Pull / Run

이번 포스팅에서는 이전 포스팅에서 만든 도커 이미지를 Docker Hub 상에 docker push와 docker pull을 이용하여 로컬환경에서 개발한 어플리케이션을 도커 이미지로 로딩함으로써 서버에서도 구동이 가

zunoxi.tistory.com

8. Docker 이미지

 

[Docker 이해하기] 6. Docker 이미지 공개

6.1 Docker 이미지의 자동 생성 및 공개 6.2 Docker Registry를 사용한 프라이빗 레지스트리 구축 6.3 클라우드 서비스를 사용한 프라이빗 레지스트리 구축 본문은 'Asa Shijo, , 정보문화사(2020)' 를 참고하

velog.io

9. Docker Image 생성및 hub 업로드 방법

 

Docker Image 생성 및 docker hub에 이미지 업로드

Docker Image 생성 및 docker hub에 이미지 업로드 · Version : Docker 컨테이너는 기본적으로 이미지를 사용하여 생성하며, 컨테이너 생성 후 사용자 변경 부분에 대해서는 필요에 따라 새로운 이미지를

sungwookkang.com

 

10.  Docker 의 기본은 알고 가자!

https://techblog-history-younghunjo1.tistory.com/245

 

[Docker] build와 Dockerfile로 나만의 이미지를 만들어보자

🔊 해당 포스팅은 이고잉님의 생활코딩 오픈튜토리얼의 Docker 입문 수업을 듣고 제 개인적으로 정리하는 목적하에 작성되는 포스팅입니다. 보다 자세한 강의는 여기를 참고해주세요. 저번 포스

techblog-history-younghunjo1.tistory.com

11. 아래는 샘플이니 따라해보자요!

[샘플]
docker run --name [만들 컨테이너 이름] -it [pull시킬 이미지]

[action]
docker run --name webserver1  -it ubuntu:20.04


[샘플]
docker commit [이미지화시킬 컨테이너이름] [생성할 이미지 repo]:[생성할 이미지 tag]

[action]
docker commit webserver1 weberver1-python:python


root@ea86c284f292:/# docker commit webserver1 weberver1-python:python
bash: docker: command not found
root@ea86c284f292:/# exit
exit
[root@m-k8s ~]# docker commit webserver1 weberver1-python:python
sha256:bb95fb4bc709002f575df39910dfa99e74e5d59df48935e8cbb2c2ca4ebbb8c9
[root@m-k8s ~]# docker image

Usage:  docker image COMMAND

Manage images

Commands:
  build       Build an image from a Dockerfile
  history     Show the history of an image
  import      Import the contents from a tarball to create a filesystem image
  inspect     Display detailed information on one or more images
  load        Load an image from a tar archive or STDIN
  ls          List images
  prune       Remove unused images
  pull        Pull an image or a repository from a registry
  push        Push an image or a repository to a registry
  rm          Remove one or more images
  save        Save one or more images to a tar archive (streamed to STDOUT by default)
  tag         Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE

Run 'docker image COMMAND --help' for more information on a command.

[root@m-k8s ~]# docker images
REPOSITORY         TAG       IMAGE ID       CREATED          SIZE
[weberver1-python   python    bb95fb4bc709   15 seconds ago   158MB]
dockerfile         0.1       9c61764b029f   29 minutes ago   231MB
ubuntu             20.04     bf40b7bc7a11   12 days ago      72.8MB
centos             latest    5d0da3dc9764   2 years ago      231MB

[root@m-k8s home]# vi /root/Desktop/Dockerfile 
[root@m-k8s home]# docker build -t webserver2-build2  /root/Desktop/;
Sending build context to Docker daemon  2.048kB
Step 1/2 : FROM ubuntu:20.04
 ---> bf40b7bc7a11
Step 2/2 : RUN apt update && apt install -y python3
 ---> Using cache
 ---> ed6a3007afd4
Successfully built ed6a3007afd4
Successfully tagged webserver2-build2:latest


[root@m-k8s home]# cat Dockerfile 
FROM ubuntu:20.04
RUN apt update && apt install -y python3

[root@m-k8s home]# docker images 
REPOSITORY                       TAG                 IMAGE ID       CREATED          SIZE
webserver1-build                 latest              ed6a3007afd4   41 minutes ago   158MB
webserver2-build2                latest              ed6a3007afd4   41 minutes ago   158MB
tommypagy/tommypagy-repository   cymtest-webserver   ed6a3007afd4   41 minutes ago   158MB
fastwon1/apathc2-test            v1                  ed6a3007afd4   41 minutes ago   158MB
cymtest-webserver                latest              ed6a3007afd4   41 minutes ago   158MB
tommypagy                        latest              ed6a3007afd4   41 minutes ago   158MB
weberver1-python                 python              bb95fb4bc709   2 hours ago      158MB
dockerfile                       0.1                 9c61764b029f   2 hours ago      231MB
ubuntu                           20.04               bf40b7bc7a11   12 days ago      72.8MB
centos                           latest              5d0da3dc9764   2 years ago      231MB

[root@m-k8s home]# docker push tommypagy/tommypagy-repository:cymtest-webserver 
The push refers to repository [docker.io/tommypagy/tommypagy-repository]
8c261b2ecdee: Layer already exists 
6c3e7df31590: Layer already exists 
cymtest-webserver: digest: sha256:774983c8593c78d15fa5c2e34f82ee3311353673eedffbbaffd2718f3f478b3c size: 741
[root@m-k8s home]#

https://themapisto.tistory.com/m/187

 

댓글