Hi all, I'd like to bring to light a simple public Key Value store server written on Erlang by my colleague @jamhed<p>I have wrapped it into a Docker image which anyone can quickly use.<p>Docker Hub<p>https://hub.docker.com/r/andrey01/pubkv/<p>Live Demo<p>http://asciinema.org/a/br1h2k4a6alp1hs93w2xy2gay<p>Future<p>I think that it could be a nice store feature to Docker. So that instead of mounting configuration files as volumes (-v), we could use something like:<p>services:<p><pre><code> nginx:
pubkv:
nginx.conf: /etc/nginx/nginx.conf
</code></pre>
pubkv:<p><pre><code> host: localhost
port: 10080
uuid: 12834dff-d27d-48b0-95f3-bae967a6b048
</code></pre>
just an example. (docker-compose v2 format is assumed)