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.
		
		
		
		
		
			
		
			
				
					
					
						
							25 lines
						
					
					
						
							507 B
						
					
					
				
			
		
		
	
	
							25 lines
						
					
					
						
							507 B
						
					
					
				| version: '3.4'
 | |
| 
 | |
| services:
 | |
|   sqlserver:
 | |
|     image: mcr.microsoft.com/mssql/server
 | |
|     volumes:
 | |
|       - dbdata:/var/opt/mssql
 | |
|   
 | |
|   identity-server:
 | |
|     build:
 | |
|       context: ../../
 | |
|       dockerfile: templates/service/host/IdentityServerHost/Dockerfile
 | |
|     depends_on:
 | |
|       - sqlserver      
 | |
|   
 | |
|   my-project-name:
 | |
|     build:
 | |
|       context: ../../
 | |
|       dockerfile: templates/service/host/MyCompanyName.MyProjectName.Host/Dockerfile
 | |
|     depends_on:
 | |
|       - sqlserver
 | |
|       - identity-server
 | |
| 
 | |
| volumes:
 | |
|   dbdata: |