1 Star 0 Fork 2.6K

71907239/austin

forked from java3y/austin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.yml 998 Bytes
一键复制 编辑 原始数据 按行查看 历史
Java3y 提交于 2022-12-13 21:04 . fix docker-compose.yml path
version: '3'
services:
austin-mysql:
environment:
TZ: Asia/Shanghai
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
MYSQL_ROOT_HOST: '%'
MYSQL_ROOT_PASSWORD: "root123_A"
restart: always
container_name: austin-mysql
image: mysql:5.7
hostname: mysql
command: --init-file /docker-entrypoint-initdb.d/init.sql
volumes:
- ./sql/austin.sql:/docker-entrypoint-initdb.d/init.sql
ports:
- 23306:3306
networks:
- app
austin-redis:
image: redis:3.2
ports:
- 16379:6379
restart: always
container_name: austin-redis
volumes:
- ./docker/redis/redis.conf:/usr/local/etc/redis/redis.conf:rw
command:
/bin/bash -c "redis-server /usr/local/etc/redis/redis.conf"
networks:
- app
austin:
build:
context: ./
ports:
- 8080:8080
restart: always
container_name: austin
depends_on:
- austin-redis
- austin-mysql
networks:
- app
networks:
app:
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/71907239/austin.git
git@gitee.com:71907239/austin.git
71907239
austin
austin
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385