加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
docker-compose.yml 914 Bytes
一键复制 编辑 原始数据 按行查看 历史
fucongcong 提交于 2020-07-03 10:04 . 文档更新,v2.0预告
version: '3'
services:
groupco:
build: .
ports:
- "9777:9777"
- "9520:9520"
- "9521:9521"
- "9511:9511"
- "9517:9517"
volumes:
- .:/GroupCo
- .:/var/www/GroupCo
stdin_open: true
tty: true
redis:
restart: always
image: "redis:alpine"
ports:
- 6379:6379
nginx:
image: "nginx:alpine"
ports:
- "80:80"
volumes:
- ./docker/nginx:/etc/nginx/conf.d/:ro
- .:/var/www/GroupCo
- ./runtime/nginx/:/var/log/nginx/:rw
restart : always
depends_on:
- groupco
# mysql:
# #restart: always
# image: "mysql:5.7"
# ports:
# - 3306:3306
# command: --default-authentication-plugin=mysql_native_password
# environment:
# MYSQL_ROOT_PASSWORD: 123
# MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
# MYSQL_USER: cm
# MYSQL_PASSWORD: 123
# MYSQL_DATABASE: Demo
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化