docs: add worklow docs

This commit is contained in:
Karl-Philipp Wulfert
2018-11-30 17:09:20 +01:00
parent c3182caba5
commit 7981463255
13 changed files with 289 additions and 7 deletions

View File

@@ -0,0 +1,43 @@
# Docker cheat sheet
## List running containers
```
docker ps
```
## List running containers of a `docker-compose.yml`
In the directory of the `docker-compose.yml`:
```
docker-compose ps
```
## Restart container
`$CONTAINERID` from `docker ps`.
```
docker restart $CONTAINERID
```
## Run program in container
`$PROGRAM` can be any program that is installed in the container `bash`, `sh`, `node`, `curl`...
```
docker exec -it $CONTAINERID $PROGRAM
```
## Tidy system
```
docker system prune
```
## Further resources
* [An Exhaustive Guide to Writing Dockerfiles for Node.js Web Apps](https://blog.hasura.io/an-exhaustive-guide-to-writing-dockerfiles-for-node-js-web-apps-bbee6bd2f3c4)
* [Docker and Node.js Best Practices
](https://github.com/nodejs/docker-node/blob/master/docs/BestPractices.md)