Compare commits

..

2 Commits

Author SHA1 Message Date
Nick Hepler
360e5864cf Add docker snippets md file. 2024-10-18 09:28:23 -04:00
Nick Hepler
9bbead2fcb Update README file. 2024-10-18 09:28:02 -04:00
2 changed files with 16 additions and 0 deletions

View File

@ -1,2 +1,5 @@
# snippets
A repository to allow users to quickly create, share, and manage small code snippets or notes directly within the Gitea platform.
- [Docker](docker)

13
docker.md Normal file
View File

@ -0,0 +1,13 @@
# Docker Snippets
## Stop All Containers
```shell
docker stop $(docker ps -q)
```
## Start Stopped Continaers
```shell
docker start $(docker ps -q -f "status=exited")
```