This repository has been archived by the owner on Aug 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
105 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Git CLI Cheatsheet | ||
|
||
|
||
|
||
--- | ||
# Github | ||
|
||
|
||
|
||
#### Useful References |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
#--------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters