临河任务调度
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.6KB

  1. version: '3.4'
  2. services:
  3. sqlserver:
  4. environment:
  5. - SA_PASSWORD=yourStrong(!)Password
  6. - ACCEPT_EULA=Y
  7. ports:
  8. - "51599:1433"
  9. identity-server:
  10. environment:
  11. - ASPNETCORE_URLS=http://0.0.0.0:80
  12. - ConnectionStrings__Default=Server=sqlserver;Database=TaskScheduling_Identity;Trusted_Connection=True;User=sa;Password=yourStrong(!)Password;Integrated Security=false
  13. - ConnectionStrings__SqlServerCache=Server=sqlserver;Database=TaskScheduling_Cache;Trusted_Connection=True;User=sa;Password=yourStrong(!)Password;Integrated Security=false
  14. ports:
  15. - "51600:80"
  16. task-scheduling:
  17. environment:
  18. - ASPNETCORE_URLS=http://0.0.0.0:80
  19. - ConnectionStrings__Default=Server=sqlserver;Database=TaskScheduling_ModuleDb;Trusted_Connection=True;User=sa;Password=yourStrong(!)Password;Integrated Security=false
  20. - ConnectionStrings__AbpSettingManagement=Server=sqlserver;Database=TaskScheduling_Identity;Trusted_Connection=True;User=sa;Password=yourStrong(!)Password;Integrated Security=false
  21. - ConnectionStrings__AbpPermissionManagement=Server=sqlserver;Database=TaskScheduling_Identity;Trusted_Connection=True;User=sa;Password=yourStrong(!)Password;Integrated Security=false
  22. - ConnectionStrings__AbpAuditLogging=Server=sqlserver;Database=TaskScheduling_Identity;Trusted_Connection=True;User=sa;Password=yourStrong(!)Password;Integrated Security=false
  23. - ConnectionStrings__SqlServerCache=Server=sqlserver;Database=TaskScheduling_Cache;Trusted_Connection=True;User=sa;Password=yourStrong(!)Password;Integrated Security=false
  24. - AuthServer__Authority=http://identity-server
  25. ports:
  26. - "51601:80"