mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-04 06:07:20 +08:00 
			
		
		
		
	* Update Dockerfile and docker-compose.yml * Add Dockerfile for code debugging. Add installation procedures of python, cpp and java.
		
			
				
	
	
		
			9 lines
		
	
	
		
			134 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			134 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: '3'
 | 
						|
services:
 | 
						|
  hello-algo:
 | 
						|
    build: .
 | 
						|
    image: hello-algo
 | 
						|
    container_name: hello-algo
 | 
						|
    ports:
 | 
						|
      - "8000:8000"
 |