使用 Docker 部署 Seata Server
注意事项
- 避免直接拉取latest版本镜像,latest版本并不一定是稳定版本,为避免不必要的问题,请到docker镜像仓库确定要拉取的镜像版本。
快速开始
启动seata-server实例
$ docker run --name seata-server -p 8091:8091 seataio/seata-server:1.4.2
指定seata-server IP和端口 启动
$ docker run --name seata-server \
-p 8091:8091 \
-e SEATA_IP=192.168.1.1 \
-e SEATA_PORT=8091 \
seataio/seata-server
Docker compose 启动
docker-compose.yaml
示例
version: "3"
services:
seata-server:
image: seataio/seata-server:${latest-release-version}
hostname: seata-server
ports:
- "8091:8091"
environment:
- SEATA_PORT=8091
- STORE_MODE=file
容器命令行及查看日志
$ docker exec -it seata-server sh
$ docker logs -f seata-server
使用自定义配置文件
自定义配置文件需要通过挂载文件的方式实现,将宿主机上的 registry.conf
和 file.conf
挂载到容器中相应的目录
- 指定 registry.conf
使用自定义配置文件时必须指定环境变量 SEATA_CONFIG_NAME
, 并且值需要以file:
开始, 如: file:/root/seata-config/registry
$ docker run --name seata-server \
-p 8091:8091 \
-e SEATA_CONFIG_NAME=file:/root/seata-config/registry \
-v /User/seata/config:/root/seata-config \
seataio/seata-server
其中 -e
用于配置环境变量, -v
用于挂载宿主机的目录
- 指定 file.conf
如 果需要同时指定 file.conf
配置文件,则需要在 registry.conf
文件中将 config
配置改为以下内容,name
的值为容器中对应的路径
config {
type = "file"
file {
name = "file:/root/seata-config/file.conf"
}
}