Skip to content
This repository has been archived by the owner on Aug 28, 2019. It is now read-only.

Commit

Permalink
Cleanup of doc
Browse files Browse the repository at this point in the history
  • Loading branch information
pcrespov committed Nov 28, 2017
1 parent 57d3643 commit c923370
Show file tree
Hide file tree
Showing 7 changed files with 105 additions and 5 deletions.
7 changes: 7 additions & 0 deletions demos/wasm/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# WebAssembly (wasm)



**Resources**
- http://www.webassembly.org
- https://github.com/chrisber/webassembly-webpack-starter-project
5 changes: 0 additions & 5 deletions docs/README.md

This file was deleted.

74 changes: 74 additions & 0 deletions docs/docker-cheatsheet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# Dockers CLI Cheatsheet

### Images
- Lifecycle
```!bash
docker import
docker build
docker commit
docker rmi
docker load
docker save
```
- History/tagging
```
docker history
docker tag
```
- Registry
```
docker login
docker logout
docker search
docker push
docker pull
```

### Containers
- Lifecycle
```!bash
docker create
docker rename
docker run
docker rm
docker update
```
- Running
```!bash
docker start
docker stop
docker restart
docker pause
docker unpause
docker wait
docker kill
docker attach
```
- Info
```!bash
docker ps
docker logs
docker inspect
docker events
docker port
docker top
docker stats
docker diff
```
- Misc
```!bash
docker cp
docker export
docker exec
```

### Machine


### Stack


#### Useful References
- [Docker CLI Reference](https://docs.docker.com/engine/reference/run/)
- []
- [Yet another Docker cheatsheet](https://medium.com/statuscode/dockercheatsheet-9730ce03630d)
10 changes: 10 additions & 0 deletions docs/git-cheatsheet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Git CLI Cheatsheet



---
# Github



#### Useful References
3 changes: 3 additions & 0 deletions templates/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Templates

Add here any copy&paste type of resource that can be handy to e.g. create a new demo/tool folder, ec
8 changes: 8 additions & 0 deletions templates/demo-tmpl/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

# Demo should implement these commands ------------
demo:
echo "this should launch the demo (detached if possible)"

stop:
echo "this should stop the demo"
#---------------------------------------------
3 changes: 3 additions & 0 deletions templates/demo-tmpl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@
- What licenses the tools used in this demo has? Is it compatible with the project policy?
- Pros
- Cons


More details on [Markup](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) )

0 comments on commit c923370

Please sign in to comment.