More information about the short film can be found on its facebook page.
The website is deployed to Github pages with middleman deploy.
Start a container by pulling from docker hub:
docker run --rm -it -v "$(pwd)":/app mmlkrx/sammlerin:latest /bin/sh
Or build from the dockerfile:
docker build -t sammlerin:latest .
docker run --rm -it -v "$(pwd)":/app sammlerin:latest /bin/sh
Run the following commands from the container:
git config --global user.name "Your Name"
git config --global user.email "your@name.com"
eval "$(ssh-agent)"
ssh-agent
is running now and you can add a private key to be able to automatically deploy to Github. This is a bad solution and should be updated once socket sharing between mac and docker containers works properly.
To deploy with middleman, run:
middleman deploy