mirror of
				https://git.coop/cotech/website.git
				synced 2025-11-04 02:06:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			204 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			204 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -eu
 | 
						|
 | 
						|
docker run --rm -it \
 | 
						|
  -v $(pwd):/src \
 | 
						|
  -p 4000:4000 \
 | 
						|
  ruby:2.5.3 sh -c '
 | 
						|
    cd /src &&
 | 
						|
    bundle --path vendor &&
 | 
						|
    bundle exec jekyll serve --host 0.0.0.0 --port 4000
 | 
						|
  '
 |