docker compose를 배치하는 것은 매우 간단합니다. 등록이나 scp가 필요 없습니다
다음과 같은 몇 가지 옵션이 있습니다.
유일하게 확보해야 할 것은 서버에 docker, docker compose를 설치하고 유효한 ssh 키를 가지고 있다는 것이다
docker 작성.yml
version: '3.9'
services:
backend:
build: spring-backend
container_name: spring-backend
image: spring-backend:0.0.1
expose:
- "8088"
frontend:
build: angular-frontend
image: angular-frontend:0.0.1
container_name: angular-frontend
ports:
- 80:80
depends_on:
- backend
command: [nginx-debug, '-g', 'daemon off;']
배치하다.야유
#!/bin/bash
docker-compose build
for img in $(docker-compose config | awk '{if ($1 == "image:") print $2;}'); do
images="$images $img"
done
echo $images
docker image save $images | docker -H "ssh://user@serverIp" image load
docker-compose -H "ssh://user@serverIp" up --force-recreate -d
docker-compose -H "ssh://user@serverIp" logs -f
read -p "Press any key to continue... " -n1 -s
간단한 배치만 하면 된다.sh 현재 상태를 구축하여 서버에 불러오고 실행하며 출력에 연결할 수 있습니다.
Reference
이 문제에 관하여(docker compose를 배치하는 것은 매우 간단합니다. 등록이나 scp가 필요 없습니다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/tschuehly/deploying-docker-compose-the-easy-way-without-registry-or-scp-2fn텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)