Official docker image

Any plans for a docker image?
Would be neat for lazy people like me.

Actually, there is one already!
resgateio/resgate

It is quite recently published, so there is still no official documentation for usage, nor is it announced anywhere. But to use it should be fairly straight forward with some basic Docker knowledge. The below commands should be enough to run nats and resgate in docker:

docker network create res
docker run -d --name nats -p 4222:4222 --net res nats
docker run --name resgate -p 8080:8080 --net res --restart on-failure resgateio/resgate --nats nats://nats:4222

If you try it, and run into any problems, be sure to tell!