mirror of
https://github.com/Aroy-Art/Aroy-Art-Site.git
synced 2024-12-26 23:44:23 +01:00
commit
f539ee42fd
6 changed files with 68 additions and 5 deletions
|
@ -1,7 +1,10 @@
|
|||
+++
|
||||
fragment = "item"
|
||||
#disabled = false
|
||||
date = "2017-10-04"
|
||||
disabled = false
|
||||
|
||||
date = "2020-12-15"
|
||||
lastmod = "2020-12-16"
|
||||
|
||||
weight = 80
|
||||
background = "light"
|
||||
align = "left"
|
||||
|
|
|
@ -3,14 +3,14 @@ fragment = "item"
|
|||
disabled = false
|
||||
|
||||
date = "2017-10-04"
|
||||
lastmod = "2020-12-15"
|
||||
lastmod = "2020-12-16"
|
||||
|
||||
weight = 110
|
||||
background = "light"
|
||||
align = "right"
|
||||
|
||||
title = ""
|
||||
subtitle= "I am Levi Mattiasson and i am mostly going under the name Aroy."
|
||||
subtitle= "I am Levi Mattiasson and I am mostly going under the name Aroy."
|
||||
|
||||
# Subtitle pre and post item
|
||||
#pre = ""
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 111 KiB |
|
@ -1,14 +1,21 @@
|
|||
+++
|
||||
title = "Docker Cheat Sheet"
|
||||
#subtitle = "This is my Docker commands sheat sheet."
|
||||
subtitle = "This is my Docker commands sheat sheet."
|
||||
|
||||
date = "2020-12-02"
|
||||
lastmod = "2020-12-16"
|
||||
|
||||
fragment = "content"
|
||||
weight = 100
|
||||
tags = ["docker", "cheat", "sheet"]
|
||||
+++
|
||||
|
||||
![Header Image](Image-Docker-Command-Cheat-Sheet.png)
|
||||
|
||||
# A list of docker commands
|
||||
|
||||
---
|
||||
|
||||
### List images
|
||||
|
||||
``` bash
|
||||
|
@ -26,8 +33,32 @@ docker images [OPTIONS] [REPOSITORY[:TAG]]
|
|||
| `--no-trunc` | | Don’t truncate output |
|
||||
| `--quiet , -q` | | Only show numeric IDs |
|
||||
|
||||
---
|
||||
|
||||
### Remove one or more containers
|
||||
|
||||
``` bash
|
||||
docker rm [OPTIONS] CONTAINER [CONTAINER...]
|
||||
```
|
||||
|
||||
#### Options
|
||||
|
||||
| Name, shorthand | Default | Description |
|
||||
|:----------------|:-------:| ------------------------------------------------------- |
|
||||
|`--force , -f` | | Force the removal of a running container (uses SIGKILL) |
|
||||
|`--link , -l` | | Remove the specified link |
|
||||
|`--volumes , -v` | | Remove anonymous volumes associated with the container |
|
||||
|
||||
---
|
||||
|
||||
### Stop one or more running containers
|
||||
|
||||
``` Bash
|
||||
docker stop [OPTIONS] CONTAINER [CONTAINER...]
|
||||
```
|
||||
|
||||
#### Options
|
||||
|
||||
| Name, shorthand | Default | Description |
|
||||
|:----------------|:-------:| ------------------------------------------- |
|
||||
|`--time , -t` | 10 | Seconds to wait for stop before killing it. |
|
||||
|
|
4
content/portfolio/index.md
Normal file
4
content/portfolio/index.md
Normal file
|
@ -0,0 +1,4 @@
|
|||
+++
|
||||
title = "Portfolio"
|
||||
date = "2020-12-16"
|
||||
+++
|
25
content/portfolio/item1.md
Normal file
25
content/portfolio/item1.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
+++
|
||||
fragment = "item"
|
||||
disabled = false
|
||||
|
||||
date = "2020-12-15"
|
||||
lastmod = "2020-12-16"
|
||||
|
||||
weight = 80
|
||||
background = "light"
|
||||
align = "left"
|
||||
|
||||
title = "Portfolio"
|
||||
subtitle = "This is my portfolio, these images are made in Blender, Krita, Inkscape, Godot Engine and Ureal Engine"
|
||||
|
||||
# Subtitle pre and post item
|
||||
#pre = ""
|
||||
#post = ""
|
||||
|
||||
[asset]
|
||||
image = "art/furry-aroy.png"
|
||||
+++
|
||||
|
||||
Godot Engine and Unreal Engine are my tools for creating games and programs.
|
||||
Krita is my primary tool for creating UI design's, creating artwork and image editing.
|
||||
Blender is my primary tool for 3D editing and I use it for creating 3D assets and animating.
|
Loading…
Reference in a new issue