1 Star 0 Fork 2.5K

cxz / austin

forked from java3y / austin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
docker-compose.yml 842 Bytes
一键复制 编辑 原始数据 按行查看 历史
Java3y 提交于 2022-08-16 20:32 . add docker-compose.yml and Dockerfile
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: austin-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
networks:
- app
austin:
build:
context: ./
ports:
- 8080:8080
restart: always
container_name: austin
depends_on:
- austin-redis
- austin-mysql
networks:
- app
networks:
app:
Java
1
https://gitee.com/cxz0325/austin.git
git@gitee.com:cxz0325/austin.git
cxz0325
austin
austin
master

搜索帮助