250x250
Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- javascript
- map
- Java
- dfs
- Properties
- 리소스모니터링
- deque
- 큐
- sql
- 스택
- List
- spring boot
- NIO
- set
- priority_queue
- html
- 힙덤프
- 스프링부트
- Union-find
- GC로그수집
- alter
- BFS
- Calendar
- string
- CSS
- union_find
- math
- date
- JPA
- scanner
Archives
- Today
- Total
목록공부/docker (1)
매일 조금씩
docker로 서버에 코드반영, 배포하는 방법
1. 공용 서버에 접속(ssh) ssh -p [port번호] root@[ip번호] password : [서버 접속 비밀번호] 2. 프로젝트가 있는 폴더로 들어감 (프로젝트명: meeting-document-server) cd /root/meeting-document-server 3. 현재 도커로 띄워진 컨테이너 확인 -> Spring, mariadb 두개가 있음 docker ps 4. 깃의 코드를 서버에 반영해서 새로 컨테이너를 띄우고 싶으면? git pull ./change.sh -> change.sh에 기존 컨테이너를 삭제하고 새로 컨테이너를 띄우는 스크립트가 들어가있다. ./gradlew bootJar docker build -t meeting-document:v0.0.10 . docker stop..
공부/docker
2022. 2. 15. 14:51