1 Star 0 Fork 985

langyamorenren / spring-microservice-exam

forked from GuYiTan / sg-exam 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
docker-compose-nginx.yml 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
GuYiTan 提交于 2019-04-22 21:07 . 调整部署文档
version: '2'
services:
# ---------------------------
# 前台
# ---------------------------
spring-microservice-exam-web:
image: registry.cn-hangzhou.aliyuncs.com/spring-microservice-exam/spring-microservice-exam-web:2.0
volumes:
# 挂载nginx的配置文件
- ./nginx.conf:/etc/nginx/nginx.conf
container_name: web-service
env_file: docker-compose.env # 从文件中获取配置
restart: always
ports:
- "80:80"
networks:
- net
# ---------------------------
# 后台
# ---------------------------
spring-microservice-exam-ui:
image: registry.cn-hangzhou.aliyuncs.com/spring-microservice-exam/spring-microservice-exam-ui:2.0
volumes:
# 挂载nginx的配置文件
- ./nginx.conf:/etc/nginx/nginx.conf
container_name: ui-service
env_file: docker-compose.env # 从文件中获取配置
restart: always
ports:
- "81:80"
networks:
- net
networks:
net:
driver: bridge
volumes:
data:
driver: local
Java
1
https://gitee.com/langyamorenren/spring-microservice-exam.git
git@gitee.com:langyamorenren/spring-microservice-exam.git
langyamorenren
spring-microservice-exam
spring-microservice-exam
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891