Uncoded Hack Night - Long Beach, CA
Welcome to our site repo.
We are in the process of making it easier to edit or contribute to the site. Currently if you would like to build an instance on your local machine with docker follow along:
Clone this repo in a directory of your choice (@poproar prefers a subdirectory in /home/user like ~/Jekylls)
git clone https://github.com/hacknightlbc/hacknightlbc.github.io.git
Go into the newly cloned directory
cd hacknight.githublbc.io
Ensure the entrypoint file is executable
chmod +x docker-entrypoint.sh
Build a docker image (you can name it anything you want @poproar used jkl for simplicity but it must be all lowercase)
docker build --force-rm -t jkl .
Run your container (@poproar used port 4000 for his own sanity but you could use any port like 80:4000)
docker run --rm -p 4000:4000 -v `pwd`:/site jkl
Point your browser to localhost:4000 or just localhost if you used port 80
Enjoy
A big thanks goes to @BretFisher for sharing this repo to get us started. Not sure how to fork and suggest the Dockerfile changes made here to get github-pages gem to work