上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 35 下一页
摘要: A successful Git branching model In this post I present the development model that I’ve introduced for some of my projects (both at work and private) 阅读全文
posted @ 2018-10-12 14:49 PanPan003 阅读(490) 评论(0) 推荐(0) 编辑
摘要: How to use a scalable Git branching model called Gitflow git视频合集列表 github大本营 gitflow中文备忘清单 关于 git-flow 是一个 git 扩展集,按 Vincent Driessen 的分支模型提供高层次的库操作。 阅读全文
posted @ 2018-10-12 14:10 PanPan003 阅读(1064) 评论(0) 推荐(0) 编辑
摘要: Using git-flow to automate your git branching workflow Vincent Driessen’s branching model is a git branching and release management strategy that help 阅读全文
posted @ 2018-10-12 13:14 PanPan003 阅读(313) 评论(0) 推荐(0) 编辑
摘要: Introducing GitFlow What Is GitFlow? GitFlow is a branching model for Git, created by Vincent Driessen. It has attracted a lot of attention because it 阅读全文
posted @ 2018-10-12 13:03 PanPan003 阅读(239) 评论(0) 推荐(0) 编辑
摘要: Git-Flow | How it’s used and why you should What is Git-Flow about? Git-Flow is a workflow for using Git in a way that makes continuous software devel 阅读全文
posted @ 2018-10-12 12:49 PanPan003 阅读(241) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-10-11 20:47 PanPan003 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 相关js The heavy lifting is done by the jQuery Validation plugin, which depends on (you guessed it) jQuery. In order for the whole thing to become unobt 阅读全文
posted @ 2018-09-13 18:57 PanPan003 阅读(585) 评论(0) 推荐(0) 编辑
摘要: ZipArchive 打包下载 获取文件名 阅读全文
posted @ 2018-07-26 18:51 PanPan003 阅读(495) 评论(0) 推荐(0) 编辑
摘要: Overview One of the reasons Docker containers and services are so powerful is that you can connect them together, or connect them to non-Docker worklo 阅读全文
posted @ 2018-07-11 17:13 PanPan003 阅读(724) 评论(0) 推荐(0) 编辑
摘要: Examples using the Docker Engine SDKs and Docker API After you install Docker, you can install the Go and Python SDKs and also try out the Docker Engi 阅读全文
posted @ 2018-07-11 17:00 PanPan003 阅读(357) 评论(0) 推荐(0) 编辑
摘要: Develop with Docker Engine SDKs and API Docker provides an API for interacting with the Docker daemon (called the Docker Engine API), as well as SDKs 阅读全文
posted @ 2018-07-11 14:09 PanPan003 阅读(1050) 评论(0) 推荐(0) 编辑
摘要: Dockerize PostgreSQL Installing PostgreSQL on Docker Assuming there is no Docker image that suits your needs on the Docker Hub, you can create one you 阅读全文
posted @ 2018-07-11 14:07 PanPan003 阅读(354) 评论(0) 推荐(0) 编辑
摘要: Dockerize a .NET Core application Introduction This example demonstrates how to dockerize an ASP.NET Core application. Why build ASP.NET Core? Open-so 阅读全文
posted @ 2018-07-11 13:49 PanPan003 阅读(352) 评论(0) 推荐(0) 编辑
摘要: Manage images The easiest way to make your images available for use by others inside or outside your organization is to use a Docker registry, such as 阅读全文
posted @ 2018-07-11 12:58 PanPan003 阅读(265) 评论(0) 推荐(0) 编辑
摘要: COPY COPY has two forms: COPY [--chown=<user>:<group>] <src>... <dest> COPY [--chown=<user>:<group>] ["<src>",... "<dest>"] (this form is required for 阅读全文
posted @ 2018-07-10 18:44 PanPan003 阅读(289) 评论(0) 推荐(0) 编辑
摘要: Dockerfile reference Docker can build images automatically by reading the instructions from a Dockerfile. A Dockerfile is a text document that contain 阅读全文
posted @ 2018-07-10 11:51 PanPan003 阅读(1241) 评论(0) 推荐(0) 编辑
摘要: 原文链接 Builder pattern vs. Multi-stage builds in Docker This post looks at two new PRs from the Docker project that vastly improve the developer experie 阅读全文
posted @ 2018-07-09 18:42 PanPan003 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 原文链接 Use multi-stage builds Multi-stage builds are a new feature requiring Docker 17.05 or higher on the daemon and client. Multistage builds are usef 阅读全文
posted @ 2018-07-09 18:41 PanPan003 阅读(495) 评论(0) 推荐(0) 编辑
摘要: Create a base image Most Dockerfiles start from a parent image. If you need to completely control the contents of your image, you might need to create 阅读全文
posted @ 2018-07-09 14:28 PanPan003 阅读(1172) 评论(0) 推荐(0) 编辑
摘要: Best practices for writing Dockerfiles This document covers recommended best practices and methods for building efficient images. Docker builds images 阅读全文
posted @ 2018-07-05 18:45 PanPan003 阅读(347) 评论(0) 推荐(0) 编辑
摘要: Docker development best practices The following development patterns have proven to be helpful for people building applications with Docker. If you ha 阅读全文
posted @ 2018-06-23 19:29 PanPan003 阅读(582) 评论(0) 推荐(0) 编辑
摘要: This page lists resources for application developers using Docker. Develop new apps on Docker If you’re just getting started developing a brand new ap 阅读全文
posted @ 2018-06-23 19:28 PanPan003 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 链接 Docker overview Docker is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications fro 阅读全文
posted @ 2018-06-21 19:15 PanPan003 阅读(336) 评论(0) 推荐(0) 编辑
摘要: Prerequisites Install Docker. Get Docker Compose as described in Part 3 prerequisites. Get Docker Machine as described in Part 4 prerequisites. Read t 阅读全文
posted @ 2018-06-21 17:58 PanPan003 阅读(462) 评论(0) 推荐(0) 编辑
摘要: Prerequisites Install Docker version 1.13 or higher. Get Docker Compose as described in Part 3 prerequisites.(ymal) Get Docker Machine as described in 阅读全文
posted @ 2018-06-21 16:59 PanPan003 阅读(468) 评论(0) 推荐(0) 编辑
摘要: Prerequisites Install Docker version 1.13 or higher. Get Docker Compose as described in Part 3 prerequisites.(.yaml) Get Docker Machine, which is pre- 阅读全文
posted @ 2018-06-21 14:33 PanPan003 阅读(332) 评论(0) 推荐(0) 编辑
摘要: Prerequisites Install Docker version 1.13 or higher. Get Docker Compose. On Docker for Mac and Docker for Windows it’s pre-installed, so you’re good-t 阅读全文
posted @ 2018-06-21 14:21 PanPan003 阅读(624) 评论(0) 推荐(0) 编辑
摘要: --if cloumn exist SELECT EXISTS (SELECT 1 FROM information_schema.columns WHERE table_schema='ent' AND table_name='AdsPlatform' AND column_name='Name'); --add cloumn ALTER TABLE finance."Mapping... 阅读全文
posted @ 2018-06-21 11:11 PanPan003 阅读(425) 评论(0) 推荐(0) 编辑
摘要: Prerequisites Install Docker version 1.13 or higher. Read the orientation in Part 1. Give your environment a quick test run to make sure you’re all se 阅读全文
posted @ 2018-06-20 20:58 PanPan003 阅读(526) 评论(0) 推荐(0) 编辑
摘要: Docker concepts Docker is a platform for developers and sysadmins to develop, deploy, and run applications with containers. The use of Linux container 阅读全文
posted @ 2018-06-20 19:17 PanPan003 阅读(290) 评论(0) 推荐(0) 编辑
摘要: Share Process Namespace between Containers in a Pod how to configure process namespace sharing for a pod. When process namespace sharing is enabled, p 阅读全文
posted @ 2018-06-05 17:58 PanPan003 阅读(1133) 评论(0) 推荐(0) 编辑
摘要: 创建项目模板 Creating a VSIX Deployable Project (or Item) Template with Custom Wizard Support Create a Project Template for Visual Studio from existed proje 阅读全文
posted @ 2018-06-05 12:01 PanPan003 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 官网 效果图展示: 特性 ECharts,一个使用 JavaScript 实现的开源可视化库,可以流畅的运行在 PC 和移动设备上,兼容当前绝大部分浏览器(IE8/9/10/11,Chrome,Firefox,Safari等),底层依赖轻量级的矢量图形库 ZRender,提供直观,交互丰富,可高度个 阅读全文
posted @ 2018-06-04 11:58 PanPan003 阅读(1070) 评论(0) 推荐(0) 编辑
摘要: Assign Pods to Nodes how to assign a Kubernetes Pod to a particular node in a Kubernetes cluster. Add a label to a node #List the nodes in your cluste 阅读全文
posted @ 2018-06-01 17:31 PanPan003 阅读(345) 评论(0) 推荐(0) 编辑
摘要: Configure Service Accounts for Pods A service account provides an identity for processes that run in a Pod. This is a user introduction to Service Acc 阅读全文
posted @ 2018-06-01 16:54 PanPan003 阅读(434) 评论(0) 推荐(0) 编辑
摘要: Configure a Pod to Use a PersistentVolume for Storage how to configure a Pod to use a PersistentVolumeClaim for storage. Here is a summary of the proc 阅读全文
posted @ 2018-05-31 14:05 PanPan003 阅读(320) 评论(0) 推荐(0) 编辑
摘要: OOMKilled : out of memory (OOM) Memory units The memory resource is measured in bytes. You can express memory as a plain integer or a fixed-point inte 阅读全文
posted @ 2018-05-31 11:34 PanPan003 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 多维数组 阅读全文
posted @ 2018-05-30 15:38 PanPan003 阅读(4102) 评论(0) 推荐(0) 编辑
摘要: 配置文件 环境变量 阅读全文
posted @ 2018-05-30 11:20 PanPan003 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 1.swagger error 有详细的错误信息 自己根据详细信息找问题 2.swagger error 无详细的错误信息 Controller是否重名=》重名,指定不同的 [Route("*****")] Controller必须制定 [HttpPost] 或者 [HttpGet] 3.swagg 阅读全文
posted @ 2018-05-29 19:48 PanPan003 阅读(4390) 评论(1) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 35 下一页