前言 ARMv8 = ARM64 = AArch64 ARMv7 = armv7l = ARM x86_64 = x64 = amd64 x86 = x86_32 查看
https://github.com/mattrayner/docker-lamp docker run -i -t -p "80:80" -v ${PWD}/app:/app -v ${PWD}/mysql:/var/lib/mysql mattrayner/lamp:latest-2004-ph
docker run -d -p 6688:80 --name dailyhot --restart unless-stopped rehiy/dailyhothttps://github.com/rehiy/dailyhot-docker
[header] <type>(<scope>): <subject> [body] ... [footer] ... header feat:新增功能 fix:修复错误 docs:改动文档 style: 修改格式(不影响代码行为) refactor:重构(既不新增功能,又不修复错误) perf
https://github.com/angular/angular/blob/main/CONTRIBUTING.md#-commit-message-format 规范 此规范受到
设置(Settings) → 关于(About) 多次点击版本号(Build number) 开发者选项(Developer options) 打开 USB 调试(USB debugging) cd 至 LDPl
https://hub.docker.com/_/adminer https://hub.docker.com/_/phpmyadmin
https://github.com/NginxProxyManager/nginx-proxy-manager
文档 【location】https://nginx.org/en/docs/http/ngx_http_core_module.html#location Syntax: location [ = | ~ | ~* | ^~ ] uri { ... } location @name
Nginx server { listen 80; return 301 https://$host$request_uri; } server { listen 80; listen 443 ssl; server_name example.com; return 301
free -h df -h swapon sudo dd if=/dev/zero of=/swapfile bs=1M count=2048 sudo chmod 600 /swapfile sudo mkswap /swapfile sudo swapon /swapfile /etc/fs
Nginx Web page configuration tool. Use web pages to quickly configure Nginx. Nginx 网页管理工具,使用网页来快速配置与管理 Nginx 单机与集群。
本教程完全使用 Docker 部署,连接 MariaDB 数据库,并使用 Nginx 进行反向代理。 在此之前,你需要拥有一台常规的服务器(SSH 连接)和域名(可选)。 如果你尚未安装 Docker,请阅读 /archi
步骤 ConsoleApp1 调用 ClassLibrary1 的方法。 在 CMD 运行,输出的内容如下图所示。 归纳即可得到下表。
NotificationHelper using Android.Content; using Android.OS; using System.Reflection; public static class NotificationHelper { public static void
using System; using System.Drawing; using System.Globalization; using System.IO; using System.Windows; using System.Windows.Data; using System.Windows
using System.Collections.Generic; using System.Windows; public class UniqueWindow { private static readonly List<Window> windows = new(); pu