mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-01 18:27:02 +00:00
16 lines
587 B
YAML
16 lines
587 B
YAML
version: '3'
|
|
services:
|
|
platform:
|
|
image: dax-start:latest
|
|
restart: always
|
|
ports:
|
|
- "9000:9000"
|
|
volumes:
|
|
# 读取外部化配置文件(根据实际服务器环境做修改), 宿主机目录:容器目录
|
|
- ./logs/:/logs # 日志
|
|
- ./files/:/data/files # 上传文件目录
|
|
- ./application.yml:/application.yml # 启动配置文件
|
|
- ./application-demo.yml:/application-demo.yml
|
|
- ./logback-spring.xml:/logback-spring.xml # 日志框架配置
|
|
- ./ip2region/ip2region.xdb :/data/ip2region/ip2region.xdb # ip归属地数据库
|