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
						
					
					
				version: '3.4'
 | 
						|
 | 
						|
services:
 | 
						|
  sqlserver:
 | 
						|
    environment:
 | 
						|
      - SA_PASSWORD=yourStrong(!)Password
 | 
						|
      - ACCEPT_EULA=Y
 | 
						|
    ports:
 | 
						|
      - "51599:1433"
 | 
						|
 | 
						|
  identity-server:
 | 
						|
    environment:
 | 
						|
      - ASPNETCORE_URLS=http://0.0.0.0:80
 | 
						|
      - 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:
 | 
						|
      - ASPNETCORE_URLS=http://0.0.0.0:80
 | 
						|
      - 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
 | 
						|
      - AuthServer__Authority=http://identity-server
 | 
						|
    ports:
 | 
						|
      - "51601:80" |