11 lines
		
	
	
		
			218 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			218 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| echo "=> Building the binary"
 | |
| docker run --privileged \
 | |
|   -v $(pwd):/usr/src/app  \
 | |
|   -v /var/run/docker.sock:/var/run/docker.sock \
 | |
|   starefossen/github-pages jekyll build
 | |
| echo $(pwd)
 | |
| ls -la
 | |
| ls -la _site
 | |
| 
 | 
