摘要: 一、镜像命令 搜索镜像:docker search 镜像名 拉取镜像:docker pull 镜像名 删除镜像:docker rmi 镜像名 二、容器命令 创建容器: docker run \ -p 80:80 \ --name nginx01 \ -v /home/ubuntu/nginx/con 阅读全文
posted @ 2024-08-08 23:38 lzy1666 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 一、 在项目当中创建dockerfile文件设置dockerfile属性为“始终复制”, FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base WORKDIR /web COPY . . EXPOSE 80 EXPOSE 443 FROM base AS 阅读全文
posted @ 2024-08-08 23:32 lzy1666 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 1、查询mysql镜像 docker search mysql 2、拉取镜像下载 docker pull mysql 下载指定版本 命令:docker pull mysql:5.7.8 3、mysql容器端口映射 docker run --name mysql -p 3306:3306 -e MYS 阅读全文
posted @ 2024-07-11 23:54 lzy1666 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 安装:docker安装RabbitMQ - O波V步 - 博客园 (cnblogs.com)网页管理页面设置: https://blog.csdn.net/qq_25112523/article/details/124444129 https://blog.csdn.net/m0_52985087/ 阅读全文
posted @ 2024-06-25 21:50 lzy1666 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 更新你的现有列表包 sudo apt-get update 安装一些必要的系统工具 sudo apt-get install -y \ apt-transport-https \ ca-certificates \curl \ software-properties-common 添加Docker官 阅读全文
posted @ 2024-06-25 21:49 lzy1666 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 一、在nuget引用 Ocelot。 二、创建ocelot.json配置文件 { //这里注意,以前是ReRoutes现在是Routes "Routes": [ { //Upstream表示上游请求,即客户端请求到API Gateway的请求 "UpstreamPathTemplate": "/cl 阅读全文
posted @ 2024-06-04 00:33 lzy1666 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 一、准备工作 1、Windows server 2106操作系统 2、Git 链接:https://pan.baidu.com/s/1s_3kKe5GWxJx1twggjk6Qg 提取码:mayx 3、IIS 10确保已安装 4、.net core sdk6 https://download.vis 阅读全文
posted @ 2024-04-13 13:34 lzy1666 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 一、通过命令安装 sudo apt-get install -y apt-transport-https ca-certificates dirmngr sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 8919F6B 阅读全文
posted @ 2023-10-15 00:04 lzy1666 阅读(860) 评论(0) 推荐(0) 编辑
摘要: 一、引用包 Microsoft.EntityFrameworkCore.Tools Pomelo.EntityFrameworkCore.MySql 二、常用命令 1、Add-Migration (版本号) 创建新的CodeFirst文件 2、Update-Database 更新数据库 三、代码实现 阅读全文
posted @ 2023-10-07 23:24 lzy1666 阅读(59) 评论(0) 推荐(0) 编辑
摘要: sudo apt-get update sudo apt-get upgratesudo apt install mysql-server 设置运行远程访问 修改:sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf 用# 注释掉bind-address = 127 阅读全文
posted @ 2023-05-27 11:48 lzy1666 阅读(86) 评论(0) 推荐(0) 编辑