Notice
Recent Posts
Recent Comments
250x250
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- AJAX
- Core Java
- SpringBoot
- Open Source
- MSSQL
- JavaScript
- JDBC
- oracle
- ubuntu
- Docker
- spring
- Python
- maven
- 오픈소스
- PostgreSQL
- Spring Boot
- Source
- 설정
- Eclipse
- jpa
- MySQL
- Exception
- 문서
- Thymeleaf
- IntelliJ
- STS
- git
- error
- Tomcat
- myBatis
Archives
- Today
- Total
헤르메스 LIFE
[Exception] Error response from daemon: Container XXX is not running 본문
Exception
[Exception] Error response from daemon: Container XXX is not running
헤르메스의날개 2021. 7. 25. 19:24728x90
Docker 를 실행 시 발생하는 오류 입니다.
? Docker 컨테이너 확인
docker ps -a
? Docker 컨테이너 실행
$>docker exec -it postgres_boot bash
? Docker 컨테이너 멈춤
$>docker stop postgres_boot
? Docker 컨테이너 시작
$>docker start postgres_boot
? Docker 컨테이너 실행
$>docker exec -it postgres_boot bash
? docker exec -> run a command on an existing/running container
? docker run -> create a new container from an image, and run the command there
728x90