├── README.md ├── docker-compose.yml ├── lets-chat ├── Dockerfile ├── app │ └── controllers │ │ └── account.js └── templates │ └── login.html └── nginx ├── Dockerfile ├── consul-template.service ├── nginx.conf └── nginx.service /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osowski/registrator-sample/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osowski/registrator-sample/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lets-chat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osowski/registrator-sample/HEAD/lets-chat/Dockerfile -------------------------------------------------------------------------------- /lets-chat/app/controllers/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osowski/registrator-sample/HEAD/lets-chat/app/controllers/account.js -------------------------------------------------------------------------------- /lets-chat/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osowski/registrator-sample/HEAD/lets-chat/templates/login.html -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osowski/registrator-sample/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/consul-template.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osowski/registrator-sample/HEAD/nginx/consul-template.service -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osowski/registrator-sample/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/nginx.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osowski/registrator-sample/HEAD/nginx/nginx.service --------------------------------------------------------------------------------