“Docker usuwa istniejące tomy” Kod odpowiedzi

Usuń Docker

# Procedure
# 1- Stop the container(s) using the following command:
docker-compose down
# 2- Delete all containers using the following command:
docker rm -f $(docker ps -a -q)
# 3-Delete all volumes using the following command:
docker volume rm $(docker volume ls -q)
# 4-Restart the containers using the following command:
docker-compose up -d
Plain Polecat

Docker usuwa istniejące tomy

docker volume rm $(docker volume ls -q)
Shy Skunk

Odpowiedzi podobne do “Docker usuwa istniejące tomy”

Pytania podobne do “Docker usuwa istniejące tomy”

Więcej pokrewnych odpowiedzi na “Docker usuwa istniejące tomy” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu