- Pusher - Real time apps
Pas de request/response mais une solution élégante en PUB/SUB
- Pubnub - The global data stream network for IoT, Mobile, and Web applications
Ultra overkill mais apparemment très puissant. Fait à peu près tout.
| #! /bin/sh | |
| readonly LIGHT_IMAGE=alpine:latest | |
| generate() { | |
| docker run ${LIGHT_IMAGE} sleep 0 | |
| container_id=$(docker ps -a -l -q) | |
| echo "$(docker inspect --format='{{ .Name }}' ${container_id} | tr '_/' ' ')" | |
| docker rm ${container_id} &> /dev/null | |
| } |