mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.8 KiB
29 lines
1.8 KiB
6 years ago
|
version: '3.4'
|
||
|
|
||
|
services:
|
||
|
sqlserver:
|
||
|
environment:
|
||
|
- SA_PASSWORD=yourStrong(!)Password
|
||
|
- ACCEPT_EULA=Y
|
||
|
ports:
|
||
6 years ago
|
- "51599:1433"
|
||
6 years ago
|
|
||
|
identity-server:
|
||
|
environment:
|
||
6 years ago
|
- ASPNETCORE_URLS=http://0.0.0.0:80
|
||
6 years ago
|
- ConnectionStrings__Default=Server=sqlserver;Database=MyProjectName_Identity;Trusted_Connection=True;MultipleActiveResultSets=true;User=sa;Password=yourStrong(!)Password;Integrated Security=false
|
||
|
- ConnectionStrings__SqlServerCache=Server=sqlserver;Database=MyProjectName_Cache;Trusted_Connection=True;MultipleActiveResultSets=true;User=sa;Password=yourStrong(!)Password;Integrated Security=false
|
||
|
ports:
|
||
|
- "51600:80"
|
||
|
|
||
|
my-project-name:
|
||
|
environment:
|
||
6 years ago
|
- ASPNETCORE_URLS=http://0.0.0.0:80
|
||
6 years ago
|
- ConnectionStrings__Default=Server=sqlserver;Database=MyProjectName_ModuleDb;Trusted_Connection=True;MultipleActiveResultSets=true;User=sa;Password=yourStrong(!)Password;Integrated Security=false
|
||
|
- ConnectionStrings__AbpSettingManagement=Server=sqlserver;Database=MyProjectName_Identity;Trusted_Connection=True;MultipleActiveResultSets=true;User=sa;Password=yourStrong(!)Password;Integrated Security=false
|
||
|
- ConnectionStrings__AbpPermissionManagement=Server=sqlserver;Database=MyProjectName_Identity;Trusted_Connection=True;MultipleActiveResultSets=true;User=sa;Password=yourStrong(!)Password;Integrated Security=false
|
||
|
- ConnectionStrings__AbpAuditLogging=Server=sqlserver;Database=MyProjectName_Identity;Trusted_Connection=True;MultipleActiveResultSets=true;User=sa;Password=yourStrong(!)Password;Integrated Security=false
|
||
|
- ConnectionStrings__SqlServerCache=Server=sqlserver;Database=MyProjectName_Cache;Trusted_Connection=True;MultipleActiveResultSets=true;User=sa;Password=yourStrong(!)Password;Integrated Security=false
|
||
6 years ago
|
- AuthServer__Authority=http://identity-server
|
||
6 years ago
|
ports:
|
||
|
- "51601:80"
|