250x250
Notice
Recent Posts
«   2024/09   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
관리 메뉴

일상 코딩

[링크] [GCP]VM(Ubuntu OS) Docker 설치 및 포트 열기 본문

GCP ( Google Cloud Platform )/Docker 세팅

[링크] [GCP]VM(Ubuntu OS) Docker 설치 및 포트 열기

polarcompass 2022. 10. 7. 20:28
728x90

https://blog.dalso.org/google-cloud-platform-2/nas-project/8618

 

[GCP]VM(ubuntu OS) Docker 설치하기.(portainer 추가) - 달소씨의 하루

Google Cloud Platform을 이용한 NAS 시스템 구축 의 세번째 글입니다. 생각보다 빠르게 진행되고있네요. 물론, 지금까지는 어려운부분도 없는 기본셋팅 수준이였고 제대로 보여줄만한건 나오지 않았

blog.dalso.org

https://docs.h2o.ai/driverless-ai/korean-latest/docs/userguide/ko/install/google-docker-container.html

 

Google Compute Engine의 Docker 컨테이너에 설치 및 실행 — Using Driverless AI 1.10.1.2 문서

업그레이드하기 전에 MLI 모델을 빌드하십시오. 업그레이드하기 전에 MOJO 파이프라인을 빌드하십시오. 업그레이드하기 전에 Driverless AI를 중지하고 Driverless AI tmp 디렉터리를 백업하십시오. Driverl

docs.h2o.ai

sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
// 끊어서 진행
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
//
sudo apt-get update && sudo apt-get install docker-ce docker-ce-cli containerd.io
sudo docker -v
sudo systemctl enable docker && sudo service docker start
// 도커 이미지 다운로드
sudo docker pull bigdatamlops/flutter-nestjs-server
// 도커 이미지 실행 명령어
sudo docker run -p 3000:3000 -d bigdatamlops/flutter-nestjs-server
GCP 포트 열기

https://minimin2.tistory.com/173

 

[GCP] 외부 접속 포트 설정하기

[GCP] 외부 접속 포트 설정하기 gcp에서 인스턴스를 구성했으면 이제 외부에서 접속이 가능하도록 설정해야 합니다. 저는 python의 flask로 테스트를 해보겠습니다. 접속 포트 추가하기 GCP 메뉴중 VPC

minimin2.tistory.com

 

728x90