Difference between revisions of "Docker"
From Logic Wiki
| Line 10: | Line 10: | ||
== Other 3rd Party registries == | == Other 3rd Party registries == | ||
For 20 private repositories: [https://www.canister.io/ https://www.canister.io/] | For 20 private repositories: [https://www.canister.io/ https://www.canister.io/] | ||
| + | |||
| + | == Delete containers / images == | ||
| + | Stop the container(s) using the following command: | ||
| + | docker-compose down | ||
| + | Delete all containers using the following command: | ||
| + | docker rm -f $(docker ps -a -q) | ||
| + | Delete all volumes using the following command: | ||
| + | docker volume rm $(docker volume ls -q) | ||
| + | Restart the containers using the following command: | ||
| + | docker-compose up -d | ||
Revision as of 09:14, 9 October 2021
Contents
Local Registry
Setup Instructions : https://docs.docker.com/registry/deploying/
CI with Docker
Other 3rd Party registries
For 20 private repositories: https://www.canister.io/
Delete containers / images
Stop the container(s) using the following command:
docker-compose down
Delete all containers using the following command:
docker rm -f $(docker ps -a -q)
Delete all volumes using the following command:
docker volume rm $(docker volume ls -q)
Restart the containers using the following command:
docker-compose up -d