2 Star 1 Fork 3

langxiaobai / spring-microservice-exam

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
docker-compose-nginx.yml 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
langxiaobai 提交于 2019-06-21 16:23 . Initial commit
version: '2'
services:
# ---------------------------
# 前台
# ---------------------------
spring-microservice-exam-web:
image: registry.cn-hangzhou.aliyuncs.com/spring-microservice-exam/spring-microservice-exam-web:latest
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:latest
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
1
https://gitee.com/langxiaobai/spring-microservice-exam.git
git@gitee.com:langxiaobai/spring-microservice-exam.git
langxiaobai
spring-microservice-exam
spring-microservice-exam
master

搜索帮助