@@ -1,4 +1,4 @@ | |||
<Project Sdk="Microsoft.NET.Sdk.Worker"> | |||
<Project Sdk="Microsoft.NET.Sdk.Worker"> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp3.1</TargetFramework> | |||
@@ -14,6 +14,7 @@ | |||
<PackageReference Include="Serilog" Version="2.10.0" /> | |||
<PackageReference Include="Serilog.AspNetCore" Version="3.4.0" /> | |||
<PackageReference Include="Serilog.Enrichers.Thread" Version="3.1.0" /> | |||
<PackageReference Include="Serilog.Sinks.Async" Version="1.4.0" /> | |||
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" /> | |||
<PackageReference Include="Serilog.Sinks.File" Version="4.1.0" /> | |||
</ItemGroup> | |||
@@ -1,3 +1,4 @@ | |||
using AmqpTest.Amqp; | |||
using AmqpTest.Configs; | |||
using AmqpTest.Logs; | |||
using Microsoft.Extensions.Configuration; | |||
@@ -66,6 +67,9 @@ namespace AmqpTest | |||
return setting; | |||
}; | |||
services.AddSingleton<AmqpSubscribe>(); | |||
services.AddHostedService<Worker>(); | |||
}); | |||
} | |||
} | |||
@@ -3,7 +3,7 @@ | |||
"AmqpTest": { | |||
"commandName": "Project", | |||
"environmentVariables": { | |||
"DOTNET_ENVIRONMENT": "Development" | |||
"DOTNET_ENVIRONMENT": "debug" | |||
} | |||
}, | |||
"Docker": { | |||
@@ -4,7 +4,7 @@ | |||
"AccessKey": "LTAI4FdXhwy1evoHXingMaiZ", | |||
"AccessSecret": "CGmGpzta6ro8Bta4RLiQD18EF8m6Bm", | |||
"iotInstanceId": "iot-cn-nif1vosz501", | |||
"ConsumerGroupId": "0ZQFQv0QreC7WALTEWad000100", //"bbQdnXQJIx2eCDjVbCIZ000100", // "hJBxHrxY51jZVhu6cCsQ000100", //"8GwMMBJUWz5PWaW0jtb6000100", | |||
"ConsumerGroupId": "eQVdFouKAYajil208F7F000100", //"bbQdnXQJIx2eCDjVbCIZ000100", // "hJBxHrxY51jZVhu6cCsQ000100", //"8GwMMBJUWz5PWaW0jtb6000100", | |||
"RegionId": "cn-shanghai", | |||
"ProductKey": "a18mXM6Cvx8", | |||
"UId": "1111649216405698", | |||
@@ -12,7 +12,7 @@ elif [[ ${environment} == 'test' ]]; then | |||
docker rm amqp_test || true | |||
docker rmi -f $(docker images | grep 139.224.254.18:5000/amqp_test | awk '{print $3}') | |||
docker pull 139.224.254.18:5000/amqp_test:$version | |||
docker run -d -e environment=test -v /home/data/amqp_test/log:/var/amqp/logs --restart=always --name amqp_test 139.224.254.18:5000/amqp_test:$version; | |||
docker run -d -e environment=test -v /home/data/amqp_test/log:/var/amqp/logs --name amqp_test 139.224.254.18:5000/amqp_test:$version; | |||
#删除产生的None镜像 | |||
docker rmi -f $(docker images | grep none | awk '{print $3}') | |||
docker ps -a | |||