# orchard-tech-blog

This is the internal tech blog for The Orchard. Anyone is welcome to contribute, whether it's a long post or a small helpful tip. The blog lives at `https://engineering.theorchard.io/`

## Testing
To test locally:

You'll need to have Docker installed.
[Install Docker](https://docs.docker.com/docker-for-mac/install/)

```bash
docker build --target production -t testengblog:0.1 --pull=true --file=./tech-blog/Dockerfile tech-blog
docker run -it --rm -p 80:80 --name jekylltest testengblog:0.1
```

(You might need to do a chmod a+w tech-blog/Gemfile.lock if you have problems)

Open a browser, and navigate to `http://localhost/`
