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.
27 lines
707 B
27 lines
707 B
2 years ago
|
version: "3"
|
||
|
|
||
|
services:
|
||
|
nacos1:
|
||
|
container_name: nacos-server
|
||
|
hostname: nacos-server
|
||
2 years ago
|
image: nacos/nacos-server:v2.1.0
|
||
2 years ago
|
environment:
|
||
|
- MODE=standalone
|
||
|
- PREFER_HOST_MODE=hostname
|
||
|
- SPRING_DATASOURCE_PLATFORM=mysql
|
||
2 years ago
|
- MYSQL_SERVICE_HOST=austin-mysql
|
||
2 years ago
|
- MYSQL_SERVICE_PORT=3306
|
||
|
- MYSQL_SERVICE_USER=root
|
||
2 years ago
|
- MYSQL_SERVICE_PASSWORD=root123_A
|
||
|
- MYSQL_SERVICE_DB_NAME=nacos_config
|
||
2 years ago
|
- JVM_XMS=128m
|
||
|
- JVM_XMX=128m
|
||
|
- JVM_XMN=128m
|
||
|
volumes:
|
||
2 years ago
|
- /home/nacos/single-logs/nacos-server:/home/nacos/logs
|
||
2 years ago
|
- /home/nacos/init.d:/home/nacos/init.d
|
||
|
ports:
|
||
|
- 8848:8848
|
||
2 years ago
|
- 9848:9848
|
||
|
- 9849:9849
|
||
2 years ago
|
restart: on-failure
|