加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.yml 2.06 KB
一键复制 编辑 原始数据 按行查看 历史
Li Jie 提交于 2019-07-26 17:56 . update code
version: '2'
services:
albedo-mysql:
build:
context: ./
dockerfile: ./db/Dockerfile
environment:
MYSQL_ROOT_PASSWORD: root
restart: always
container_name: albedo-mysql
image: albedo-mysql
ports:
- 3306:3306
albedo-redis:
image: redis:5.0
ports:
- 6379:6379
restart: always
container_name: albedo-redis
hostname: albedo-redis
albedo-eureka:
build:
context: ./
dockerfile: ./albedo-eureka/Dockerfile
restart: always
ports:
- 8761:8761
container_name: albedo-eureka
hostname: albedo-eureka
image: albedo-eureka
albedo-config:
build:
context: ./
dockerfile: ./albedo-config/Dockerfile
restart: always
container_name: albedo-config
hostname: albedo-config
image: albedo-config
albedo-gateway:
build:
context: ./
dockerfile: ./albedo-gateway/Dockerfile
restart: always
ports:
- 9999:9999
container_name: albedo-gateway
hostname: albedo-gateway
image: albedo-gateway
albedo-auth:
build:
context: ./
dockerfile: ./albedo-auth/Dockerfile
restart: always
container_name: albedo-auth
hostname: albedo-auth
image: albedo-auth
albedo-sys:
build:
context: ./
dockerfile: ./albedo-sys/albedo-sys-biz/Dockerfile
restart: always
container_name: albedo-sys
hostname: albedo-sys
image: albedo-sys
albedo-monitor:
build:
context: ./
dockerfile: ./albedo-visual/albedo-monitor/Dockerfile
restart: always
ports:
- 5001:5001
container_name: albedo-monitor
hostname: albedo-monitor
image: albedo-monitor
albedo-gen:
build:
context: ./
dockerfile: ./albedo-visual/albedo-gen/Dockerfile
restart: always
container_name: albedo-gen
hostname: albedo-gen
image: albedo-gen
albedo-zipkin:
build:
context: ./
dockerfile: ./albedo-visual/albedo-zipkin/Dockerfile
restart: always
image: albedo-zipkin
container_name: albedo-zipkin
ports:
- 5002:5002
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化