# docker-seate-0.7.1 **Repository Path**: xiaoyun461/docker-seate-0.7.1 ## Basic Information - **Project Name**: docker-seate-0.7.1 - **Description**: No description available - **Primary Language**: Docker - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-01 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### **构建docker镜像** docker build -t xiaoyun461/seata:0.7.1 . ### **创建配置文件目录和日志存放地址** mkdir -p /home/seata/conf mkdir -p /home/seata/logs cd seata/conf cp -f ./ /home/seata/conf ### **启动seata命令** docker run \ --name seata \ -v /home/seata/conf/registry.conf:/opt/seata/conf/registry.conf \ -v /home/seata/logs:/opt/seata/logs \ --restart always \ -p 8881:8881 \ xiaoyun461/seata:0.7.1 ### **查看容器nacos端口IP** docker inspect nacos| grep IPAddress