Compare commits
No commits in common. 'main' and 'states/03' have entirely different histories.
@ -1,23 +0,0 @@
|
||||
when:
|
||||
- event: push
|
||||
branch: main
|
||||
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: git.st1t.ru/thest1tch/mkdocs-material:latest
|
||||
commands:
|
||||
- mkdocs build --clean
|
||||
- ls -l site/
|
||||
- cp -r site/ /site
|
||||
- chown 1000:1000 /site
|
||||
- chmod -R 777 /site
|
||||
|
||||
- name: deploy
|
||||
image: alpine:latest
|
||||
volumes:
|
||||
- /opt/appdata/nginx/st1t.ru/site:/site
|
||||
commands:
|
||||
- cp -r site/* /site/
|
||||
- echo "Deployment complete."
|
||||
|
@ -1,3 +1,2 @@
|
||||
# docs
|
||||
|
||||
[](https://ci.st1t.ru/repos/1)
|
@ -1,18 +0,0 @@
|
||||
# docker pull squidfunk/mkdocs-material:latest
|
||||
# docker build -t git.st1t.ru/thest1tch/mkdocs-material:latest -t git.st1t.ru/thest1tch/mkdocs-material:latest .
|
||||
# docker push git.st1t.ru/thest1tch/mkdocs-material:latest
|
||||
|
||||
FROM squidfunk/mkdocs-material:latest
|
||||
|
||||
RUN apk add --no-cache py3-pip py3-pillow py3-cffi py3-brotli gcc musl-dev python3-dev pango build-base libffi-dev jpeg-dev libxslt-dev pngquant py3-cairosvg
|
||||
|
||||
RUN pip install \
|
||||
mkdocs-material \
|
||||
mkdocs-material-extensions>=1.1 \
|
||||
mkdocs-minify-plugin>=0.2 \
|
||||
mkdocs-git-revision-date-plugin==0.3.1 \
|
||||
pymdown-extensions>=9.9.1 \
|
||||
mkdocs-git-revision-date-localized-plugin \
|
||||
mkdocs-glightbox \
|
||||
mkdocs-blogging-plugin \
|
||||
livereload
|
@ -1,21 +0,0 @@
|
||||
# Ошибки в Docker
|
||||
|
||||
## WARNING: Error loading config file
|
||||
|
||||
При выполнении любой команды, например `docker run --rm -ti ubuntu:14.04 /bin/bash` выдаетс ошибка
|
||||
|
||||
```
|
||||
WARNING: Error loading config file:/home/username/.docker/config.json - stat /home/username/.docker/config.json: permission denied
|
||||
```
|
||||
|
||||
Причина: нарушена пренадлежность файла `config.json`
|
||||
|
||||
Решение: восстановить принадлежность файла:
|
||||
|
||||
```
|
||||
sudo chown $USER /home/username/.docker/config.json
|
||||
```
|
||||
или каталога:
|
||||
```
|
||||
sudo chown -R $USER /home/username/.docker
|
||||
```
|
@ -1,50 +0,0 @@
|
||||
# ARK: Survival Evolved - Dedicated Server
|
||||
|
||||
```yaml title="docker-compose.yml"
|
||||
version: '3.7'
|
||||
|
||||
services:
|
||||
ark-server:
|
||||
restart: always
|
||||
container_name: ark-server
|
||||
image: hermsi/ark-server:latest
|
||||
volumes:
|
||||
- ./ark-server:/app #main location for game server
|
||||
- ./ark-server-backups:/home/steam/ARK-Backups # folder for backup
|
||||
environment:
|
||||
- SESSION_NAME=$SESSION_NAME
|
||||
- SERVER_MAP=$SERVER_MAP
|
||||
- SERVER_PASSWORD=$SERVER_PASSWORD
|
||||
- ADMIN_PASSWORD=$ADMIN_PASSWORD
|
||||
- MAX_PLAYERS=$MAX_PLAYERS
|
||||
- UPDATE_ON_START=$UPDATE_ON_START
|
||||
- BACKUP_ON_STOP=$BACKUP_ON_STOP
|
||||
- PRE_UPDATE_BACKUP=$PRE_UPDATE_BACKUP
|
||||
- WARN_ON_STOP=$WARN_ON_STOP
|
||||
- GAME_MOD_IDS=$GAME_MOD_IDS
|
||||
ports:
|
||||
# Port for connections from ARK game client
|
||||
- "7777:7777/udp"
|
||||
# Raw UDP socket port (always Game client port +1)
|
||||
- "7778:7778/udp"
|
||||
# RCON management port
|
||||
- "27020:27020/tcp"
|
||||
# Steam's server-list port
|
||||
- "27015:27015/udp"
|
||||
```
|
||||
|
||||
```env title=".env"
|
||||
SESSION_NAME="ark server"
|
||||
SERVER_MAP=Viking_P
|
||||
SERVER_PASSWORD=
|
||||
ADMIN_PASSWORD=strong-password
|
||||
MAX_PLAYERS=10
|
||||
UPDATE_ON_START=true
|
||||
BACKUP_ON_STOP=true
|
||||
PRE_UPDATE_BACKUP=false
|
||||
WARN_ON_STOP=true
|
||||
GAME_MOD_IDS="id_mods_1,id_mods_2"
|
||||
```
|
||||
|
||||
ссылки на моды, что я юзаю на своем сервере:
|
||||
1838617463,520879363,889745138,1404697612,1814953878,731604991,2804332920,2718221803,1762210129,2765267311,1251632107,1565015734,821530042,2121156303,702828089,741203089,898049820
|
@ -1,3 +0,0 @@
|
||||
# Prometheus
|
||||
|
||||
Prometheus — это база данных временных рядов, использующая экспортеры для мониторинга различных серверов/сервисов
|
@ -1,23 +0,0 @@
|
||||
# MariaDB
|
||||
|
||||
```yaml
|
||||
services:
|
||||
mariadb:
|
||||
container_name: mariadb
|
||||
image: mariadb:latest #11.5.2
|
||||
restart: unless-stopped
|
||||
stop_grace_period: 5s
|
||||
security_opt: # see https://github.com/MariaDB/mariadb-docker/issues/434#issuecomment-1136151239
|
||||
- seccomp:unconfined
|
||||
- apparmor:unconfined
|
||||
command: --innodb-buffer-pool-size=512M --transaction-isolation=READ-COMMITTED --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --max-connections=512 --innodb-rollback-on-timeout=OFF --innodb-lock-wait-timeout=120
|
||||
volumes:
|
||||
- "./database:/var/lib/mysql"
|
||||
environment:
|
||||
MARIADB_AUTO_UPGRADE: "1"
|
||||
MARIADB_INITDB_SKIP_TZINFO: "1"
|
||||
MARIADB_DATABASE: "name_db"
|
||||
MARIADB_USER: "username"
|
||||
MARIADB_PASSWORD: "pass_user"
|
||||
MARIADB_ROOT_PASSWORD: "root_pass"
|
||||
```
|
@ -1,8 +0,0 @@
|
||||
# ImageMaid - очистка канртинок для библиотеки
|
||||
|
||||
[](https://github.com/Kometa-Team/ImageMaid)
|
||||
[](https://github.com/Kometa-Team/ImageMaidreleases/latest)
|
||||
[](https://hub.docker.com/r/kometateam/imagemaid/)
|
||||
|
||||

|
||||
|
@ -1,10 +0,0 @@
|
||||
# Radarr
|
||||
|
||||
[](https://github.com/Prowlarr/Prowlarr)
|
||||
[](https://github.com/Jackett/Jackett/releases/latest)
|
||||
<<<<<<< HEAD
|
||||
[](https://hub.docker.com/r/linuxserver/prowlarr/)
|
||||
=======
|
||||
[](https://hub.docker.com/r/linuxserver/prowlarr/)
|
||||
|
||||
>>>>>>> 49f6799 (?)
|
@ -1,5 +0,0 @@
|
||||
# Sonarr
|
||||
|
||||
[](https://github.com/Prowlarr/Prowlarr)
|
||||
[](https://github.com/Jackett/Jackett/releases/latest)
|
||||
[](https://hub.docker.com/r/linuxserver/prowlarr/)
|
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="640" height="640" viewBox="0 0 640 640" xml:space="preserve">
|
||||
<desc>Created with Fabric.js 5.3.0</desc>
|
||||
<defs>
|
||||
</defs>
|
||||
<g transform="matrix(0.9544918218 0 0 0.9544918218 320 325.5657767239)" id="0UAuLmXgnot4bJxVEVJCQ" >
|
||||
<linearGradient id="SVGID_136_0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1 0 0 1 -236.6470440833 -213.9441386034)" x1="259.78" y1="261.15" x2="463.85" y2="456.49">
|
||||
<stop offset="0%" style="stop-color:#74C2FF;stop-opacity: 1"/>
|
||||
<stop offset="100%" style="stop-color:rgb(134,230,169);stop-opacity: 1"/>
|
||||
</linearGradient>
|
||||
<path style="stroke: rgb(242,242,242); stroke-opacity: 0.51; stroke-width: 190; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: url(#SVGID_136_0); fill-rule: nonzero; opacity: 1;" transform=" translate(0, 0)" d="M 131.8665 -139.04883 C 159.01022 -111.20969000000001 170.12421 -99.45396000000001 203.11849999999998 -51.72057000000001 C 236.1128 -3.9871800000000093 264.44147999999996 83.98416999999998 187.33995 144.05073 C 177.72728999999998 151.53955 166.73827 158.81189999999998 154.65932999999998 165.65812999999997 C 69.85514999999998 213.72433999999998 -68.67309000000003 240.78578 -161.79279 174.28328999999997 C -268.17583 98.30862999999997 -260.10282 -68.66557000000003 -144.35093 -170.50579000000005 C -28.599040000000002 -272.34602000000007 104.72278 -166.88797000000005 131.86649999999997 -139.04883000000004 z" stroke-linecap="round" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 112 KiB |
Before Width: | Height: | Size: 162 KiB |
Before Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 92 KiB |
Before Width: | Height: | Size: 2.3 MiB |
Before Width: | Height: | Size: 637 KiB |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 98 KiB |
Before Width: | Height: | Size: 89 KiB |
Before Width: | Height: | Size: 119 KiB |
Before Width: | Height: | Size: 66 KiB |
Before Width: | Height: | Size: 164 KiB |
Before Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 114 KiB |
Before Width: | Height: | Size: 445 KiB |
Before Width: | Height: | Size: 326 KiB |
Before Width: | Height: | Size: 13 KiB |
@ -1,4 +0,0 @@
|
||||
# Полезные ресурсы
|
||||
|
||||
[HTPasswd Generator](https://www.web2generators.com/apache-tools/htpasswd-generator)
|
||||
|