#docker-compose build --no-cache //重新创建容器,不管有没有 #docker-compose up #docker-compose up -d //后台启动并运行容器,如果没有会先执行build,如果有只启动#docker-compose build --no-cache && docker-compose up -d asp.net core #docker run -it --rm --entrypoint /bin/bash tlz.netcor
一般情况下,我们要获取docker容器里的jvm信息只能进入容器后执行jmap,jstack,jstat 命令去获取,jstack,jstat还好,但是jmap dump的文件要拿出来,得先copy dump文件到挂载在宿主机上的目录,或者使用docker cp命令去获取, 如 https://pathtogeek.com/thread-heap-dumps-from-a-docker-container 1. Run the below command to bash into the co
package com.java.tencent; import java.lang.reflect.Array; import java.util.Arrays; import java.util.HashMap; import java.util.Map; public class T_1_twoSum { /*初级解法*/ public int[] twoSum(int[] nums, int target) { int[] result = new int[2]; for(int i=0
在docker中安装redis 使用命令行安装redis 下载并解压 wget http://download.redis.io/releases/redis-3.2.6.tar.gz tar -xvf redis-3.2.6.tar.gz cd redis-3.2.6.tar.gz 2.编译安装 make 启动redis服务 // 启动redis服务 src/redis-server & // 连接redis src/redis-cli set test "hello" ge
安装Docker yum install docker 本文使用的系统是centos7,ubuntu使用以下命令 sudo apt-get update sudo apt-get install docker-engine 如果报了以下错误,是因为yum被其它进程使用了 Another app is currently holding the yum lock; waiting for it to exit... The other application is: PackageKit Memo