mirror of https://github.com/ZhongFuCheng3y/austin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
998 B
46 lines
998 B
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:
|