本文最后更新于 2024年12月2日 晚上
Tomcat部署
启动 Tomcat 容器
1 2 3 4 5 6 7 8 9 10 11 12
| version: '3' services: tomcat1: image: tomcat container_name: tomcat1 ports: - 9090:8080 tomcat2: image: tomcat container_name: tomcat2 ports: - 9091:8080
|
Nginx部署
准备存储卷
准备Nginx配置文件
创建Nginx配置文件: /usr/local/nginx/conf/nginx.conf
, 内容如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| user nginx; worker_processes 1;
events { worker_connections 1024; }
http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; upstream tomcatServer { server 192.168.75.145:9090; server 192.168.75.145:9091; }
server { listen 80; server_name admin.service.itoken.funtl.com; location / { proxy_pass http://tomcatServer; index index.jsp index.html index.htm; } } }
|
创建docker-compose.yml
创建文件: /usr/local/nginx/docker-compose.yml
, 内容如下:
1 2 3 4 5 6 7 8 9 10 11
| version: '3.1' services: nginx: restart: always image: nginx container_name: nginx ports: - 80:80 volumes: - ./conf/nginx.conf:/etc/nginx/nginx.conf - ./data:/usr/share/nginx/wwwroot
|