mirror of
				https://github.com/yeasy/docker_practice.git
				synced 2025-10-31 10:11:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			207 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			207 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "3"
 | |
| services:
 | |
| 
 | |
|   db:
 | |
|     image: postgres
 | |
| 
 | |
|   web:
 | |
|     build: .
 | |
|     command: python3 manage.py runserver 0.0.0.0:8000
 | |
|     volumes:
 | |
|       - .:/code
 | |
|     ports:
 | |
|       - "8000:8000"
 | |
|     links:
 | |
|       - db
 |