02 2021 档案

摘要:由于peewee用起来比较简单 , 所以了解了一下 以Python内置的数据库SQLite为例 python3.7版本 import peewee conn = peewee.SqliteDatabase('xxx.db') #sqlite中创建并连接数据库 class Stock(peewee.M 阅读全文
posted @ 2021-02-09 10:12 鲁哒哒 阅读(249) 评论(0) 推荐(0)
摘要:Dockerfile 文件 version: '3' services: nginx: image: nginx container_name: nginx volumes: # 映射主机./conf.d目录到容器/etc/nginx/conf.d目录 - "$PWD/conf.d:/etc/ngi 阅读全文
posted @ 2021-02-08 11:43 鲁哒哒 阅读(89) 评论(0) 推荐(0)