1 Star 0 Fork 0

CMC/BYBIT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
docker-compose.yml 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
CMC 提交于 2024-07-24 13:38 . 1
version: '3.7'
services:
mysql:
image: mysql
container_name: mysql8.0
environment:
MYSQL_ROOT_PASSWORD: 123456
ports:
- published: 3306
target: 3306
volumes:
- source: ./docker/etc/mysql/conf.d
target: /etc/mysql/conf.d
type: bind
networks:
- intranet
nginx:
image: nginx
container_name: nginx1.17
depends_on:
- php-fpm
ports:
- published: 80
target: 80
volumes:
- source: ./
target: /var/www
type: bind
- source: ./docker/etc/nginx/nginx.conf
target: /etc/nginx/nginx.conf
type: bind
- source: ./docker/etc/nginx/conf.d
target: /etc/nginx/conf.d
type: bind
networks:
- intranet
php-fpm:
image: 19340091/php:7.4-fpm
container_name: php7.4-fpm
ports:
- published: 9000
target: 9000
volumes:
- source: ./
target: /var/www
type: bind
- source: ./docker/etc/php/php-fpm.d
target: /usr/local/etc/php-fpm.d
type: bind
networks:
- intranet
networks:
intranet:
driver: bridge
name: intranet
external: true
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/coder-cmc/bybit.git
[email protected]:coder-cmc/bybit.git
coder-cmc
bybit
BYBIT
master

搜索帮助