일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- JavaScript
- Windows 10
- xargs
- Source
- find
- plugin
- GIT
- profile
- 줄바꿈 문자
- Windows
- vscode
- Mac
- 단축키
- maVen
- grep
- tomcat
- VirtualBox
- 네트워크
- ssh
- IntelliJ
- web.xml
- import
- Quartz
- Eclipse
- netsh
- bash
- port
- context
- lsof
- resource
- Today
- Total
목록2024/10/10 (4)
develog
도커 이미지 생성## 도커 이미지 생성# 현재 폴더의 Dockerfile-my 파일을 기준으로 my-node-app:1.0 도커 이미지를 만든다docker build -f Dockerfile-my -t my-node-app:1.0 . 도커 컨테이너 실행## 도커 컨테이너 실행# my-node-app:1.0 도커 이미지를 my-node-app 이름의 도커 컨테이너로 실행하고 호스트 3000 포트와 맵핑한다docker run -d -p 3000:3001 --name my-node-app my-node-app:1.0
Preferences (command + ,) 을 열고 'encoding' 으로 검색 General > Workspace > Text file encoding > UTF-8 Web > CSS Files > Creating files > Encoding > UTF-8 Web > HTML Files > Creating files > Encoding > UTF-8Web > HTML Files > Loading files > Encoding > UTF-8 Web > JSP Files > Creating files > Encoding > UTF-8 XML > XML Files > Creating files > Encoding > UTF-8
프로젝트 폴더 .vscode/settings.json 파일에 아래 내용을 추가한다// .vscode/settings.json{ "files.encoding": "euckr", "files.autoGuessEncoding": true}
SRC_PATH=/source/path;TGT_PATH=/target/path;PROJ_DIR=project_directory;diff -rq \ --exclude '.DS_Store' \ --exclude '.git' \ --exclude '.gitignore' \ --exclude '.idea' \ --exclude '*.iml' \ --exclude '.vscode' \ --exclude '.classpath' \ --exclude '.project' \ --exclude '.settings' \ --exclude '*.class' \ $SRC_PATH/$PROJ_DIR \ $TGT_PATH/$PROJ_DIR