일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- resource
- context
- grep
- Quartz
- 네트워크
- maVen
- IntelliJ
- JavaScript
- Windows
- web.xml
- xargs
- GIT
- 줄바꿈 문자
- netsh
- Mac
- find
- Windows 10
- tomcat
- profile
- VirtualBox
- lsof
- Eclipse
- port
- Source
- plugin
- vscode
- ssh
- 단축키
- bash
- import
- Today
- Total
목록Dev (274)
develog
ssh root@127.0.0.1 -p 2222 https://dev.to/s1ntaxe770r/how-to-setup-ssh-within-a-docker-container-i5i How to setup an ssh server within a docker container In this post I will walk you through my process of setting up ssh access to your docker container.... dev.to
https://docs.docker.com/engine/reference/builder/ Dockerfile reference docs.docker.com
$ docker pull ubuntu:20.04 $ docker images REPOSITORY TAG IMAGE ID CREATED SIZE ubuntu 20.04 54c9d81cbb44 3 days ago 72.8MB $ docker run -itd --name ubuntu ubuntu:20.04 bash 9f225a6324a5030f34085a1ed9ac1423bdc1df1021b05eb5db306389942e3ac3 $ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 9f225a6324a5 ubuntu:20.04 "bash" 19 seconds ago Up 16 seconds ubuntu $ docker exec -it ubuntu..
특정 커밋 merge git merge --no-ff 2c049d3 파일을 merge하지만 commit 은 하지 않는다 git merge --no-commit 브랜치 커밋을 하나로 합치로 커밋은 하지 않는다 git merge --squash --no-commit
# 커밋을 취소하고 파일들을 unstaged 상태로 만든다 git reset --mixed HEAD^ git reset HEAD^ # 커밋을 취소하고 파일들을 staged 상태로 만든다 git reset --soft HEAD^ # 커밋을 취소하고 파일들을 삭제한다 git reset --hard HEAD^