19 lines
		
	
	
		
			329 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			329 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "3.9"
 | |
| 
 | |
| services:
 | |
|   backend:
 | |
|     build:
 | |
|       context: .
 | |
|       dockerfile: backend/Dockerfile
 | |
|     container_name: my-backend
 | |
|     restart: unless-stopped
 | |
| 
 | |
|   frontend:
 | |
|     build:
 | |
|       context: .
 | |
|       dockerfile: frontend/Dockerfile
 | |
|     container_name: my-frontend
 | |
|     ports:
 | |
|       - "6080:80"
 | |
|     restart: unless-stopped
 |