Go to file
2017-07-21 14:05:21 -07:00
.github Update ISSUE_TEMPLATE 2017-05-04 13:30:48 -07:00
result Revert "added connection pooling to postgres to prevent client timeouts" 2016-12-27 10:07:14 -08:00
vote Put gunicorn command in list 2016-06-18 10:56:26 -07:00
worker updating to latest version of dotnet 2017-04-07 12:33:22 -07:00
.gitignore Recreate worker as a .NET Core app 2016-06-11 14:26:04 -07:00
architecture.png Update architecture diagram 2016-06-19 12:14:38 -07:00
docker-compose-javaworker.yml updating compose files to v3 2017-01-23 17:44:16 -08:00
docker-compose-simple.yml updating compose files to v3 2017-01-23 17:44:16 -08:00
docker-compose.yml updating to latest version of dotnet 2017-04-07 12:33:22 -07:00
docker-stack.yml Update docker-stack.yml 2017-07-21 14:05:21 -07:00
dockercloud.yml Fix image names in dockercloud.yml 2016-06-18 10:49:05 -07:00
LICENSE Add LICENSE and MAINTAINERS 2016-03-31 11:49:23 -07:00
MAINTAINERS Add Mano as a maintainer 2016-10-20 10:25:10 +02:00
README.md Updating title of app 2017-01-24 12:48:36 -08:00

Example Voting App

Getting started

Download Docker. If you are on Mac or Windows, Docker Compose will be automatically installed. On Linux, make sure you have the latest version of Compose.

Run in this directory:

docker-compose up

The app will be running at http://localhost:5000, and the results will be at http://localhost:5001.

Alternately, if you want to run it on a Docker Swarm, first make sure you have a swarm. If you don't, run:

docker swarm init

Once you have your swarm, in this directory run:

docker stack deploy --compose-file docker-stack.yml vote

Architecture

Architecture diagram

  • A Python webapp which lets you vote between two options
  • A Redis queue which collects new votes
  • A .NET worker which consumes votes and stores them in…
  • A Postgres database backed by a Docker volume
  • A Node.js webapp which shows the results of the voting in real time

Note

The voting application only accepts one vote per client. It does not register votes if a vote has already been submitted from a client.