도커 실행 명령

코드 예제

5
0

도커 명령

docker ps # current containers
docker run # create and start the container
docker create # create container
dokcer exec # to run commnads in container for once
docker volume # create a docker volume
docker network # create a docker network
docker rm # remove container 
docker images # list the images
docker rmi # remove image
docker build # build a new image from dockerfile
docker push # push your image to docker repo
docker pull # download an image from docker repo
docker commit # create an image from container
3
0

컨테이너에서 도커 실행 명령

sudo docker exec -it <container name> <command>
1
0

dockerfile 예제

FROM ubuntu:18.04
COPY . /app
RUN make /app
CMD python /app/app.py
0
0

쉘 스크립트에서 도커 명령을 실행하는 방법

echo -n "enter type compose command ? "
read type

[[ "$type" ]] && docker-compose $type;

다른 언어로

이 페이지는 다른 언어로되어 있습니다

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................