1 Star 0 Fork 6

ithailong/docker-compose-moneywhere

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
docker-compose-ali.yml 1.39 KB
一键复制 编辑 原始数据 按行查看 历史
markliu2013 提交于 2024-01-15 21:20 . save
version: '3'
services:
mysql:
image: registry.cn-hangzhou.aliyuncs.com/moneywhere/mysql:5.7
restart: always
environment:
MYSQL_ROOT_PASSWORD: 111111
MYSQL_DATABASE: moneywhere
command: [
'--character-set-server=utf8mb4',
'--collation-server=utf8mb4_general_ci',
'--max_connections=10000',
'--default-authentication-plugin=mysql_native_password'
]
volumes:
- moneywhere_mysql_data:/var/lib/mysql
ports:
- "43740:3306"
phpmyadmin:
image: registry.cn-hangzhou.aliyuncs.com/moneywhere/phpmyadmin:latest
links:
- mysql
environment:
PMA_ARBITRARY: 1
restart: always
ports:
- "43741:80"
moneywhere-api-user:
links:
- mysql
image: registry.cn-hangzhou.aliyuncs.com/moneywhere/moneywhere-api-user:latest
env_file: api.env
ports:
- "43742:9092"
moneywhere-fe-user:
links:
- moneywhere-api-user
image: registry.cn-hangzhou.aliyuncs.com/moneywhere/moneywhere-fe-user:latest
environment:
USER_API_HOST: http://moneywhere-api-user:9092
ports:
- "43743:80"
moneywhere-fe-user-mobile:
links:
- moneywhere-api-user
image: registry.cn-hangzhou.aliyuncs.com/moneywhere/moneywhere-fe-user-mobile:latest
environment:
USER_API_HOST: http://moneywhere-api-user:9092
ports:
- "43744:80"
volumes:
moneywhere_mysql_data:
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ithailong/docker-compose-moneywhere.git
git@gitee.com:ithailong/docker-compose-moneywhere.git
ithailong
docker-compose-moneywhere
docker-compose-moneywhere
main

搜索帮助