mirror of
				https://github.com/monkeytypegame/monkeytype.git
				synced 2025-10-28 17:56:09 +08:00 
			
		
		
		
	* Create docker-compose.yaml file for frontend * Move docker-compose.yaml file * change name * Add docker instructions * Add docker installation link
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| services:
 | |
|   monkeytype-frontend:
 | |
|     container_name: monkeytype-frontend
 | |
|     image: node:gallium-bullseye
 | |
|     restart: on-failure
 | |
|     ports:
 | |
|       - "3000:3000"
 | |
|     volumes:
 | |
|       - ../:/monkeytype
 | |
|     entrypoint: 'bash -c "cd /monkeytype && npm run dev-fe"'
 |