250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 오픈소스
- Spring Boot
- Docker
- ubuntu
- error
- oracle
- Thymeleaf
- 문서
- Source
- Python
- PostgreSQL
- Open Source
- 설정
- IntelliJ
- JavaScript
- jpa
- MySQL
- Exception
- git
- Core Java
- SpringBoot
- MSSQL
- Eclipse
- spring
- AJAX
- STS
- myBatis
- JDBC
- maven
- Tomcat
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