mirror of
https://github.com/SantaSpeen/santaspeen.ru-blog.git
synced 2025-07-02 15:55:56 +00:00
about page
This commit is contained in:
parent
8cc01bfe08
commit
00ea10187d
@ -1,5 +1,4 @@
|
|||||||
1. You are free to use this code to build your own website
|
1. You are free to use this code to build your own website
|
||||||
2. Do not copy the content in the following directories: blog, blog-work, static/img
|
2. Do not copy the content in the following directories: blog, static
|
||||||
3. Crediting the author is appreciated
|
|
||||||
|
|
||||||
No confusing license. Be kind and help others learn.
|
No confusing license. Be kind and help others learn.
|
@ -11,7 +11,7 @@ Docker run exec or have entry point use: --entry-point=/bin/bash
|
|||||||
docker run --rm -it image-name sh
|
docker run --rm -it image-name sh
|
||||||
```
|
```
|
||||||
|
|
||||||
Build args
|
## Build args
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -19,25 +19,57 @@ docker build . -t myimage --build-arg ARTIFACTORY_USER=$ARTIFACTORY_USER --build
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
Docker run rm exec
|
## Docker run rm exec
|
||||||
|
|
||||||
```
|
```
|
||||||
docker run --rm -it tg_webhook_exporter bash
|
docker run --rm -it tg_webhook_exporter bash
|
||||||
```
|
```
|
||||||
|
|
||||||
Docker overlay who use (need install jq)
|
## Docker overlay who use (need install jq)
|
||||||
|
|
||||||
```
|
```
|
||||||
docker inspect $(docker ps -qa) | jq -r 'map([.Name, .GraphDriver.Data.MergedDir]) | .[] | "\(.[0])\t\(.[1])"'
|
docker inspect $(docker ps -qa) | jq -r 'map([.Name, .GraphDriver.Data.MergedDir]) | .[] | "\(.[0])\t\(.[1])"'
|
||||||
```
|
```
|
||||||
|
|
||||||
Docker image size
|
## Docker image size
|
||||||
|
|
||||||
```
|
```
|
||||||
docker ps --format '{{.Names}}\n{{.Image}}:{{.Size}}\n' -s
|
docker ps --format '{{.Names}}\n{{.Image}}:{{.Size}}\n' -s
|
||||||
```
|
```
|
||||||
|
|
||||||
Docker cp
|
## Docker cp
|
||||||
```
|
```
|
||||||
docker cp <containerId>:/file/path/within/container /host/path/target
|
docker cp <containerId>:/file/path/within/container /host/path/target
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## Retag for own registory
|
||||||
|
|
||||||
|
Скачать необходимый image docker pull
|
||||||
|
|
||||||
|
```
|
||||||
|
docker pull nginx:1.23.1
|
||||||
|
```
|
||||||
|
|
||||||
|
Изменить tag
|
||||||
|
|
||||||
|
```
|
||||||
|
docker tag nginx:1.23.1 registry.gitlab.example.com/test/nginx:1.23.1
|
||||||
|
```
|
||||||
|
|
||||||
|
Push в артифактори
|
||||||
|
|
||||||
|
```
|
||||||
|
docker push registry.gitlab.example.com/test/nginx:1.23.1
|
||||||
|
```
|
||||||
|
|
||||||
|
## Docker compose run
|
||||||
|
|
||||||
|
Запуск тупой команды чтоб контейнер не падал, иногда бывает нужно
|
||||||
|
|
||||||
|
version: "3.7"
|
||||||
|
services:
|
||||||
|
chatops:
|
||||||
|
image: registry.gitlab.example.com/test/myubuntu-image:v.0.1
|
||||||
|
command: tail -F anything
|
||||||
|
|
||||||
|
@ -3,10 +3,6 @@ title: About
|
|||||||
hide_table_of_contents: true
|
hide_table_of_contents: true
|
||||||
---
|
---
|
||||||
|
|
||||||
# О себе
|
|
||||||
|
|
||||||
Тут о себе текст
|
|
||||||
|
|
||||||
export const Highlight = ({children, color}) => (
|
export const Highlight = ({children, color}) => (
|
||||||
<span
|
<span
|
||||||
style={{
|
style={{
|
||||||
@ -19,11 +15,67 @@ export const Highlight = ({children, color}) => (
|
|||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
|
|
||||||
<Highlight color="#25c2a0">Зеленый</Highlight> и <Highlight color="#1877F2">Синий</Highlight> тест использования выделений
|
# О себе
|
||||||
|
|
||||||
|
## Акмалов Артур
|
||||||
|
### Инженер по разработке и сопровождению сервисов
|
||||||
|
|
||||||
|
В IT с 2014 года, нравится учиться и получать новые знания в данной области.
|
||||||
|
В свободное время пишу простейшие программы и скрипты для оптимизации и автоматизации однообразных или рутинных задач.
|
||||||
|
Стараюсь писать инструкции, полезные заметки, интересные статьи у себя на сайте и сторонних ресурсах.
|
||||||
|
Изучаю инструменты и методологии <Highlight color="#339665">DevOps</Highlight> и программирование на <Highlight color="#306998">Python</Highlight>.
|
||||||
|
|
||||||
|
Интересные для меня направления:
|
||||||
|
- Системы управления конфигурациями: Ansible, Terraform, Salt
|
||||||
|
- Оркестрация/контейнеризация: Kubernetes, Docker
|
||||||
|
- Мониторинг: Prometheus, Grafana
|
||||||
|
- Базы данных: PostgreSQL, MongoDB
|
||||||
|
- Системы виртуализации: Proxmox
|
||||||
|
- Облачная платформа: Yandex.Cloud, Timeweb
|
||||||
|
- Язык программирования: Python
|
||||||
|
- CI/CD: Gitlab
|
||||||
|
|
||||||
|
|
||||||
I can write **Markdown** alongside my _JSX_!
|
Также есть своя домашняя серверная (homelab), где я провожу эксперименты, разрабатываю и изучаю различные OpenSource проекты
|
||||||
|
|
||||||
:::note
|
|
||||||
|
|
||||||
Some **content** with _Markdown_ `syntax`. Check [this `api`](#).
|
<!--
|
||||||
|
:::tip
|
||||||
|
Some **content** with _Markdown_ `syntax`. Check [this `api`](#).
|
||||||
|
:::
|
||||||
|
-->
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
#### 📊 Моя страница на [GitHub](https://github.com/akmalovaa)
|
||||||
|
| <a href="https://github.com/akmalovaa"><img align="center" src="https://github.akmalov.com/api?username=akmalovaa&theme=tokyonight&count_private=true&show_icons=true" alt="Akmalov github stats" /></a> | <a href="https://github.com/akmalovaa"><img align="center" src="https://github.akmalov.com/api/top-langs/?theme=tokyonight&count_private=true&show_icons=true&layout=compact" /></a>
|
||||||
|
| ------------- | ------------- |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#### ⤵️ Контакты
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<a href="https://www.linkedin.com/in/akmalov-artur/" alt="Linkedin">
|
||||||
|
<img src="https://img.shields.io/badge/-Linkedin-0e76a8?style=for-the-badge&logo=Linkedin&logoColor=white" />
|
||||||
|
</a>
|
||||||
|
<a href="mailto:akmalov.mail@gmail.com" alt="Gmail">
|
||||||
|
<img src="https://img.shields.io/badge/-Gmail-d93025?style=for-the-badge&labelColor=d93025&logo=gmail&logoColor=white" />
|
||||||
|
</a>
|
||||||
|
<a href="https://t.me/AAkmalov" alt="Telegram">
|
||||||
|
<img src="https://img.shields.io/badge/-Telegram-2ca5e0?style=for-the-badge&labelColor=2ca5e0&logo=telegram&logoColor=white" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
#### 📄 Сертификаты
|
||||||
|
|
||||||
|
- <a href="./certs/MTCNA.pdf" target="_blank">MTCNA</a> - MikroTik Certified Network Associate
|
||||||
|
- <a href="./certs/MTCRE.pdf" target="_blank">MTCRE</a> - MikroTik Certified Routing Engineer (Маршрутизация)
|
||||||
|
- <a href="./certs/MTCTCE.pdf" target="_blank">MTCTCE</a> - MikroTik Certified Traffic Control Engineer (Управление трафиком)
|
||||||
|
- <a href="./certs/MTCSE.pdf" target="_blank">MTCSE</a> - MikroTik Certified Security Engineer (Безопасность сети)
|
||||||
|
- <a href="./certs/MTCSWE.pdf" target="_blank">MTCSWE</a> - MikroTik Certified Switching Engineer (Коммутация)
|
||||||
|
- <a href="./certs/cisco.pdf" target="_blank">Cisco</a> - Routing
|
||||||
|
|
||||||
|
BIN
static/certs/MTCNA.pdf
Normal file
BIN
static/certs/MTCNA.pdf
Normal file
Binary file not shown.
BIN
static/certs/MTCRE.pdf
Normal file
BIN
static/certs/MTCRE.pdf
Normal file
Binary file not shown.
BIN
static/certs/MTCSE.pdf
Normal file
BIN
static/certs/MTCSE.pdf
Normal file
Binary file not shown.
BIN
static/certs/MTCSWE.pdf
Normal file
BIN
static/certs/MTCSWE.pdf
Normal file
Binary file not shown.
BIN
static/certs/MTCTCE.pdf
Normal file
BIN
static/certs/MTCTCE.pdf
Normal file
Binary file not shown.
BIN
static/certs/cisco.pdf
Normal file
BIN
static/certs/cisco.pdf
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user