yoncho`s blog
4. Docker Start 본문
Start 명령어는 Pull받은 Image를 Container로 만드는 Create 명령어 동작 이후 실행 시킬 때 사용되거나
Stop 명령어로 실행되던 Container를 멈추게 한 후 다시 실행 시킬 때 사용된다.
1. Start 명령어 Option (참조 : https://docs.docker.com/engine/reference/commandline/start/ )
- Usage
$ docker start [OPTIONS] CONTAINER [CONTAINER...]
- Option
- --attach, -a : attach STDOUT/STDERR and forward signals
- --checkpoint : restore frme this checkpoint
- --checkpoint-dir : use a custom checkpoint storage directory
- --detach-keys : override the key sequence for detaching a container
- --interactive, -i : attach container`s STDIN
2. 예제.1) 현재 멈춘 Container “test_httpd”를 다시 실행 시켜보자
1. Container 전체 목록 확인 (명령어 : “$ docker ps -a”)
2. 멈춰있는 Container 다시 실행 시키기 (명령어 : “$ docker start test_httpd”)
3. 현재 실행 중인 Container 목록 확인 (명령어 : “$ docker ps”)
'기술, 나의 공부를 공유합니다. > Docker' 카테고리의 다른 글
6. Docker Run (Create + Start) (0) | 2023.06.22 |
---|---|
5. Docker Stop (0) | 2023.06.22 |
3. Docker Create (0) | 2023.06.22 |
2. DockerFile (0) | 2023.06.22 |
1. Docker 설치 하기 for Windows (0) | 2023.06.22 |
Comments