docker compose linux tomcat 安装
0.docker 安装
yum install docker-io service docker start
1.安装pip
yum -y install epel-release yum -y install python-pip
2.下载docker compose
pip install docker-compose
3.docker version
docker-compose version
4.编写 yaml 语法
version: "2" services: web1: image: tomcat ports: - 8080 volumes: - /docker/tomcat1/server:/usr/local/tomcat/webapps/ - /docker/tomcat1/logs:/usr/local/tomcat/logs web2: image: sonatype/nexus ports: - "8081:8081" volumes: - /docker/nexus/data:/sonatype-work
5.运行
docker-compose up
6.启动日志
7.后台进程
8.docker down
9. docker compose 常见命令
[root@bogon tomcat-maven]# docker compose --help Usage: docker COMMAND A self-sufficient runtime for containers Options: --config string Location of client config files (default "/root/.docker") -D, --debug Enable debug mode --help Print usage -H, --host list Daemon socket(s) to connect to -l, --log-level string Set the logging level ("debug"|"info"|"warn"|"error"|"fatal") (default "info") --tls Use TLS; implied by --tlsverify --tlscacert string Trust certs signed only by this CA (default "/root/.docker/ca.pem") --tlscert string Path to TLS certificate file (default "/root/.docker/cert.pem") --tlskey string Path to TLS key file (default "/root/.docker/key.pem") --tlsverify Use TLS and verify the remote -v, --version Print version information and quit Management Commands: config Manage Docker configs container Manage containers image Manage images network Manage networks node Manage Swarm nodes plugin Manage plugins secret Manage Docker secrets service Manage services stack Manage Docker stacks swarm Manage Swarm system Manage Docker volume Manage volumes Commands: attach Attach local standard input, output, and error streams to a running container build Build an image from a Dockerfile commit Create a new image from a container's changes cp Copy files/folders between a container and the local filesystem create Create a new container diff Inspect changes to files or directories on a container's filesystem events Get real time events from the server exec Run a command in a running container export Export a container's filesystem as a tar archive history Show the history of an image images List images import Import the contents from a tarball to create a filesystem image info Display system-wide information inspect Return low-level information on Docker objects kill Kill one or more running containers load Load an image from a tar archive or STDIN login Log in to a Docker registry logout Log out from a Docker registry logs Fetch the logs of a container pause Pause all processes within one or more containers port List port mappings or a specific mapping for the container ps List containers pull Pull an image or a repository from a registry push Push an image or a repository to a registry rename Rename a container restart Restart one or more containers rm Remove one or more containers rmi Remove one or more images run Run a command in a new container save Save one or more images to a tar archive (streamed to STDOUT by default) search Search the Docker Hub for images start Start one or more stopped containers stats Display a live stream of container(s) resource usage statistics stop Stop one or more running containers tag Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE top Display the running processes of a container unpause Unpause all processes within one or more containers update Update configuration of one or more containers version Show the Docker version information wait Block until one or more containers stop, then print their exit codes Run 'docker COMMAND --help' for more information on a command.
捐助开发者
在兴趣的驱动下,写一个免费
的东西,有欣喜,也还有汗水,希望你喜欢我的作品,同时也能支持一下。 当然,有钱捧个钱场(支持支付宝和微信 以及扣扣群),没钱捧个人场,谢谢各位。
个人主页:http://knight-black-bob.iteye.com/
谢谢您的赞助,我会做的更好!
相关推荐
Docker 容器中 Tomcat 部署出现中文乱码解决方案 在 Docker 容器中部署 Tomcat 时,可能会遇到中文乱码的问题,这是由于 Docker 容器的 locale 设置导致的。在本文中,我们将介绍如何解决这个问题。 什么是 locale...
本教程将深入探讨如何使用Docker Compose来部署一个Nginx代理服务器,该服务器将作为负载均衡器服务于多个Tomcat应用服务器,形成一个集群。这样可以提高服务的可用性和响应能力,确保在高流量情况下系统的稳定运行...
docker-compose 快速搭建javaweb开发环境,包含mysql和tomcat镜像,适合java web开发者
在Docker容器技术中,Docker Compose是一个重要的工具,用于管理多个容器的应用。通过Docker Compose,开发者可以定义和运行多容器的Docker应用程序。其核心是`docker-compose.yml`文件,这是一个YAML格式的配置文件...
主机名IP地址操作系统组件备注环境说明架构图目录结构配置文件docker-compose配置文件keepalived配置文件keepalived检测脚本hapr
`docker-compose.yml`文件是Docker Compose的配置文件,用于定义和运行多容器的Docker应用。在这个文件中,我们可以声明服务、网络和卷,以创建一个完整的应用生态系统。 在我们的例子中,"mysql+tomcat8 docker-...
docker+jenkins+tomcat+mysql+redis+nginx,实现jenkins自动构建部署。Java+maven是单独搭建的。
Docker Compose 是一个用于定义和运行多容器 Docker 应用程序的工具。在本教程中,我们将使用 Docker Compose 部署 Jenkins,一个流行的持续集成和持续交付(CI/CD)平台。 1. **Docker Compose 文件配置**: 在 `...
8. 实战:在Docker上安装Tomcat、部署应用 30 8.1. 准备工作 31 8.2. Dockerfile的编写 31 8.3. 构建镜像 32 8.4. 根据镜像创建一个容器并运行 33 8.5. 访问Tomcat 33 8.6. 进入容器内部 33 8.7. 修改Tomcat...
docker-compose-linux,包含以下 activemq,baidupcs-web,canal,confluence,couchbase,efk,elasticsearch,elk,elkf,fastdfs,filebeat,flowable,gitlab,gogs,grafana,grafana-promtail-loki-nginx-demo,grafana_...
重启Docker后,可以尝试重新启动Tomcat容器,使用`docker start tomcat`命令。有时候,重启容器就能解决临时的端口冲突。 3. **检查端口占用情况**: 如果上述步骤仍然无效,你需要进一步检查哪个进程占用了8080...
(通常称为Tomcat)是由开发的开源Web服务器和servlet容器。 Tomcat实现了几种Java EE规范,包括Java Servlet,JavaServer Pages(JSP),Java EL和WebSocket,并提供了运行Java代码的“纯Java” HTTP Web服务器...
在Linux环境中,对Tomcat应用进行远程调试是一个非常实用的功能,可以帮助开发者在不中断服务器运行的情况下定位和解决问题。本文将详细介绍如何实现Linux中Tomcat的远程调试代码。 首先,我们需要编辑Tomcat的启动...
Docker 是一个流行的容器化平台,允许开发人员快速构建、测试和部署应用程序。 首先,我们需要创建一个 CentOS 镜像文件。为此,我们可以使用 Docker 的镜像构建命令。例如,我们可以使用以下命令创建一个基本的 ...
POSTGRES_INSTANCE = mydbcontainername”中的主机名(或容器名)可访问的PostgreSQL数据库(请参阅稍后)部署要安装,您有两种解决方案仅使用Docker (可选) docker build -t zwindler/xwiki-tomcat8:latest ....
标题 "Docker Logging with a Tomcat Container with the Native Graylog Driver" 暗示了本文将探讨如何在Docker环境中使用Tomcat容器,并利用Graylog的原生驱动来收集和管理日志。Graylog是一个开源的日志管理和...
看到这个: : 如何使用通过收集器,hbas,web $ docker-compose up -d启动代理(Pinpoint快速入门testapp) $ test-tomcat/run.sh浏览localhost:3080 另请访问localhost:8081以在test-tomcat容器中生成数据。...
一个受此Docker食谱影响的运行GeoServer的简单Docker容器: : 获取图像 有多种方法可以将映像添加到系统中: 首选方式(但使用大多数带宽作为初始映像)是获得我们的Docker可信构建,如下所示: docker pull ...
可见,一个项目可以由多个服务(容器)关联而成,Compose 面向项目进行管理。 最常见的项目是 web 网站,该项目应该包含 web 应用和缓存。 下面使用Docker Componse构建一个Tomcat的镜像 1、在/usr/local/创建...
docker-compose-mysql-tomcat docker撰写mysql和tomcat模型建立之前下载您的应用程序战争工件,将其重命名为“ app.war”,并将其放入service-app / 编辑service-dbsetup / scripts.sql并编写sql命令使用docker-...