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.
42 lines
852 B
42 lines
852 B
2 years ago
|
version: '2.1'
|
||
3 years ago
|
|
||
|
services:
|
||
|
apollo-quick-start:
|
||
|
image: nobodyiam/apollo-quick-start
|
||
|
container_name: apollo-quick-start
|
||
|
depends_on:
|
||
2 years ago
|
apollo-db:
|
||
|
condition: service_healthy
|
||
3 years ago
|
ports:
|
||
|
- "8080:8080"
|
||
|
- "8090:8090"
|
||
|
- "8070:8070"
|
||
|
links:
|
||
|
- apollo-db
|
||
|
|
||
|
apollo-db:
|
||
2 years ago
|
image: mysql:8.0
|
||
3 years ago
|
container_name: apollo-db
|
||
|
environment:
|
||
|
TZ: Asia/Shanghai
|
||
|
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
|
||
2 years ago
|
healthcheck:
|
||
|
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
|
||
|
interval: 5s
|
||
|
timeout: 1s
|
||
|
retries: 10
|
||
3 years ago
|
depends_on:
|
||
|
- apollo-dbdata
|
||
|
ports:
|
||
|
- "13306:3306"
|
||
|
volumes:
|
||
|
- ./sql:/docker-entrypoint-initdb.d
|
||
|
volumes_from:
|
||
|
- apollo-dbdata
|
||
|
|
||
|
apollo-dbdata:
|
||
|
image: alpine:latest
|
||
|
container_name: apollo-dbdata
|
||
|
volumes:
|
||
|
- /var/lib/mysql
|