码迷,mamicode.com
首页 >  
搜索关键字:alpine    ( 156个结果
DOCKER 相关的一些用法
这就是 docker 官网 tutorial 的一个流程 my first docker app Create a file named Dockerfile with the following contents. FROM node:12-alpine WORKDIR /app COPY . . ...
分类:其他好文   时间:2020-06-09 23:41:11    阅读次数:80
kubernetes pod内抓包,telnet检查网络连接的几种方式
背景 在日常kubernetes的运维中,经常遇到pod的网络问题,如pod间网络不通,或者端口不通,更复杂的,需要在容器里面抓包分析才能定位。而kubertnets的场景,pod使用的镜像一般都是尽量精简,很多都是基于alpine基础镜像制作的,因而pod内没有ping,telnet,nc,cur ...
分类:Web程序   时间:2020-06-05 23:08:50    阅读次数:80
Spring Boot 2.3 新特性分层JAR
背景 在我们实际生产容器化部署过程中,往往会遇到 Docker 镜像很大,部署发布很慢的情况 影响 docker 镜像大小的因素,主要有以下三个方面: 基础镜像的大小 。尽量选择 alpine 作为基础镜像 减少操作系统内置软件 Dockerfile 指令层数。 这就要求我们优化 Dockerfil ...
分类:编程语言   时间:2020-05-30 14:17:43    阅读次数:95
8u111-jdk-alpine 字体缺少FontConfiguration的NullPointerException错误解决方案
1、异常 java.lang.NullPointerException at sun.awt.FontConfiguration.getVersion(FontConfiguration.java:1264) at sun.awt.FontConfiguration.readFontConfigFi ...
分类:其他好文   时间:2020-05-27 15:27:53    阅读次数:364
基于alpine镜像构建的步骤
与稳定版镜像相比,alpine镜像体积更小,只提供了基本的运行环境,缺少很多运行时的依赖。在构建使用了uwsgi的项目的镜像时会报错。 这时就需要安装一些所依赖的包 如图:步骤3 步骤2: 切换了apk的源,使用阿里云的alpine镜像源(提升下载速度) 步骤3: apk是alpine镜像的软件包下 ...
分类:其他好文   时间:2020-05-26 15:20:10    阅读次数:69
解决Alpine镜像缺少字体的问题
Issue前言:开发人员在使用监控报表管理系统时,导出Excel时,报空指针异常:[2020-05-1114:31:47]ERRORcom.ruoyi.common.utils.poi.ExcelUtilcreateSheet-.......创建工作表Exception:{}java.lang.NullPointerException:null2020-05-1114:31:47]ERRORcom
分类:其他好文   时间:2020-05-17 00:48:49    阅读次数:323
[Mise] Refetch API data when a state value changes with the `$watch` property in Alpine JS
In this lesson, we build a little app that fetches dog photos from the dog.ceo API, based on a "breed" search field. We want the API call to happen ag ...
分类:Windows程序   时间:2020-05-16 16:51:37    阅读次数:76
alpine apk软件管理包常用命令总结
前言:开发人员使用的镜像alpine缺少相关依赖包,在制作镜像的过程中,总结如下命令,以备后续使用更换使用源查看本地使用源使用阿里源镜像sed-i‘s/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g‘/etc/apk/repositories使用科大镜像sed-i‘s/dl-cdn.alpinelinux.org/mirrors.us
分类:其他好文   时间:2020-05-15 11:57:03    阅读次数:172
[Mise] Update a count state value with the x-on event listener directive in Alpine JS
In this lesson, we define a "count" state value with the x-data directive provided by Alpine JS. This defines a new scoped component, which can have a ...
分类:Web程序   时间:2020-05-14 19:49:13    阅读次数:101
[Mise] Toggle visibility and styles based on state with `x-show` and `x-bind` in Alpine JS
In this lesson, we create a set of tabs with Alpine JS, where only the content of the currently active tab is visible. To do this, we define an active ...
分类:Web程序   时间:2020-05-14 19:45:34    阅读次数:73
156条   上一页 1 2 3 4 5 ... 16 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!