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 | 31 |
Tags
- AJAX
- Tomcat
- 설정
- 문서
- JavaScript
- MSSQL
- jpa
- STS
- Thymeleaf
- error
- JDBC
- git
- Source
- Core Java
- 오픈소스
- Eclipse
- myBatis
- oracle
- Open Source
- IntelliJ
- spring
- maven
- Exception
- PostgreSQL
- Spring Boot
- Python
- MySQL
- SpringBoot
- Docker
- ubuntu
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