In order for a developer to run DiceCloud locally, all they need to do is run `docker-compose up --build`. This does take a very long time to execute but prevents a developer from needing to deal with configuration.
		
			
				
	
	
		
			13 lines
		
	
	
		
			227 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			227 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: "3.7"
 | 
						|
services:
 | 
						|
  web:
 | 
						|
    build:
 | 
						|
      context: ./
 | 
						|
    volumes:
 | 
						|
      - .:/home/dicecloud/DiceCloud
 | 
						|
    ports:
 | 
						|
      - "3000:3000"
 | 
						|
      - "3003:3003"
 | 
						|
    # entrypoint: /bin/bash
 | 
						|
    # stdin_open: true
 | 
						|
    # tty: true |