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
version: '2.1'
|
|
|
|
services:
|
|
apollo-quick-start:
|
|
image: nobodyiam/apollo-quick-start
|
|
container_name: apollo-quick-start
|
|
depends_on:
|
|
apollo-db:
|
|
condition: service_healthy
|
|
ports:
|
|
- "8080:8080"
|
|
- "8090:8090"
|
|
- "8070:8070"
|
|
links:
|
|
- apollo-db
|
|
|
|
apollo-db:
|
|
image: mysql:8.0
|
|
container_name: apollo-db
|
|
environment:
|
|
TZ: Asia/Shanghai
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
|
|
healthcheck:
|
|
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
|
|
interval: 5s
|
|
timeout: 1s
|
|
retries: 10
|
|
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
|