摘要: 设置docker开机启动 systemctl enable docker 设置自动重启 创建容器设置 docker run -d --restart=always --name 设置容器名 使用的镜像 (上面命令 --name后面两个参数根据实际情况自行修改) # Docker 容器的重启策略如下: 阅读全文
posted @ 2024-09-14 10:57 Swlymbcty 阅读(314) 评论(0) 推荐(0) 编辑
摘要: import os import py_compile # 项目根目录 project_dir = os.getcwd() # 需要忽略的文件和目录 ignore_files = ['gunicorn.conf.py'] ignore_dirs = ['venv'] def compile_and_ 阅读全文
posted @ 2024-09-06 15:43 Swlymbcty 阅读(4) 评论(0) 推荐(0) 编辑
摘要: # 更新软件包索引 sudo apt-get update # 安装需要的软件包以使apt能够通过HTTPS使用仓库 sudo apt-get install ca-certificates curl gnupg lsb-release # 添加Docker的GPG密钥 curl -fsSL htt 阅读全文
posted @ 2024-09-03 17:37 Swlymbcty 阅读(4) 评论(0) 推荐(0) 编辑
摘要: resize2fs命令提示: resize2fs 1.44.1 (24-Mar-2018)The filesystem is already XX (4k) blocks long. Nothing to do! 解决: XX:~# parted /dev/vda GNU Parted 3.2 Us 阅读全文
posted @ 2024-08-15 11:02 Swlymbcty 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 生成Token create_access_token用来创建访问时需要的access_token,创建时可标记为fresh,默认为false create_refresh_token用来创建 刷新过的access_token 时,访问接口需要的refresh_token,与上面不同,创建时不能标记 阅读全文
posted @ 2024-08-14 14:42 Swlymbcty 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 1.字符 表达式 描述 [abc] 字符集。匹配集合中所含的任一字符。 [^abc] 否定字符集。匹配任何不在集合中的字符。 [a-z] 字符范围。匹配指定范围内的任意字符。 . 匹配除换行符以外的任何单个字符。 \ 转义字符。 \w 匹配任何字母数字,包括下划线(等价于[A-Za-z0-9_])。 阅读全文
posted @ 2024-01-24 11:45 Swlymbcty 阅读(17) 评论(0) 推荐(0) 编辑
摘要: FROM ghcr.io/osgeo/gdal:ubuntu-small-latest RUN apt-get update RUN apt-get install pip -y RUN apt-get install git -y RUN pip install --upgrade --no-de 阅读全文
posted @ 2024-01-18 11:05 Swlymbcty 阅读(89) 评论(0) 推荐(0) 编辑
摘要: __init__.py 1 from flask_apscheduler import APScheduler 2 ... 3 4 scheduler = APScheduler() 5 6 from app import app 7 8 def create_app(config_name): 9 阅读全文
posted @ 2024-01-10 14:31 Swlymbcty 阅读(39) 评论(0) 推荐(0) 编辑
摘要: # -*- encoding: utf-8 -*- from osgeo import gdal from osgeo import osr import numpy as np def getSRSPair(dataset): ''' 获得给定数据的投影参考系和地理参考系 :param datas 阅读全文
posted @ 2024-01-03 15:00 Swlymbcty 阅读(335) 评论(0) 推荐(1) 编辑
摘要: 1 from docx.document import Document as _Document 2 from docx.oxml.text.paragraph import CT_P 3 from docx.oxml.table import CT_Tbl 4 from docx.table i 阅读全文
posted @ 2023-12-20 14:16 Swlymbcty 阅读(65) 评论(0) 推荐(0) 编辑