Commandes d'exécution docker

Exemples de code

5
0

commande docker

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

commande d'exécution docker sur le conteneur

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

exemple de fichier dockerfile

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

comment exécuter une commande docker dans un script shell

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

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

Dans d'autres langues

Cette page est dans d'autres langues

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