1 Star 2 Fork 1

devlive-community / incubator-infosphere

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
docker-compose.yml 694 Bytes
一键复制 编辑 原始数据 按行查看 历史
qianmoQ 提交于 2024-01-28 10:31 . 修复 docker 镜像地址错误问题
version: '3.8'
services:
mysql:
image: mysql:latest
environment:
MYSQL_ROOT_PASSWORD: 12345678
MYSQL_DATABASE: infosphere
ports:
- "3306:3306"
volumes:
- ./configure/initializer/infosphere.sql:/docker-entrypoint-initdb.d/schema.sql
infosphere-app:
image: devliveorg/infosphere:latest
environment:
SPRING_DATASOURCE_URL: jdbc:mysql://mysql:3306/infosphere
SPRING_DATASOURCE_USERNAME: root
SPRING_DATASOURCE_PASSWORD: 12345678
restart: always
ports:
- "9099:9099"
depends_on:
- mysql
volumes:
- ./configure/docker/application.properties:/opt/app/infosphere/configure/application.properties
1
https://gitee.com/devlive-community/incubator-infosphere.git
git@gitee.com:devlive-community/incubator-infosphere.git
devlive-community
incubator-infosphere
incubator-infosphere
dev

搜索帮助