티스토리 뷰

공부

[docker] stop & rm & run

승가비 2023. 1. 31. 20:49
728x90
docker build -t seunggabi-config:latest -f seunggabi-config/Dockerfile .

docker stop seunggabi-config
docker rm seunggabi-config

docker run -i -t \
   --name seunggabi-config \
   --env PROFILE=dev \
    --env CONTEXT=seunggabi \
   --env DB_HOST=jdbc:mysql://host.docker.internal:3306/seunggabi_config \
   --env DB_USER=admin \
   --env DB_PASSWORD=admin \
   -p 80:80 \
   seunggabi-config:latest

https://velog.io/@kshired/Docker-%EC%BB%A8%ED%85%8C%EC%9D%B4%EB%84%88%EC%97%90%EC%84%9C-localhost%EC%99%80-%ED%86%B5%EC%8B%A0%ED%95%98%EA%B8%B0

 

Docker 컨테이너에서 localhost와 통신하기

Docker 컨테이너에서 localhost를 지정하여 통신을 할 때, 가끔 제대로 된 동작이 안되는 경우가 있습니다.이럴때, 만약 같은 Docker 컨테이너끼리라면 docker에서 network를 생성해서 container 이름끼리 호

velog.io

https://docs.docker.com/engine/reference/commandline/run/

 

docker run

docker run: The `docker run` command first `creates` a writeable container layer over the specified image, and then `starts` it using the specified command. That is, `docker run` is equivalent...

docs.docker.com

 

728x90

'공부' 카테고리의 다른 글

[aws] ami (amazon machine image)  (0) 2023.02.01
[docker] build gradle  (0) 2023.02.01
[airflow] airflow.operators.trigger_dagrun  (0) 2023.01.28
[airflow] retry & failover  (0) 2023.01.28
[log4j] SLF4J: Class path contains multiple SLF4J bindings  (0) 2023.01.28
댓글