DevOps2 Git Commands git init & add remote echo "# stocksellnbuy" >> README.md git init git add README.md git commit -m "first commit" git remote add origin git@github.com:s2motion/stocksellnbuy.git git push -u origin master add /*stages all changes */ git add -A /* stages new files and modifications, without deletions */ git add . /* stages modifications and deletions, without new files */ git add -u ignore touch ... 2022. 5. 30. Private docker registry 구성하기 Installation Server 설정 pull registry Image s2motion@s2motion-52700:/$ sudo docker pull registry:latest ssl 접속이 기본이므로 개인적인 구축 저장소 사용을 위해 --insecure-registry 옵션 추가 s2motion@s2motion-52700:/$ sudo vi /etc/init.d/docker DOCKERD=/usr/bin/dockerd # This is the pid file managed by docker itself DOCKER_PIDFILE=/var/run/$BASE.pid # This is the pid file created/managed by start-stop-daemon DOCKER_SSD_PIDF.. 2022. 5. 30. 이전 1 다음