├── .circleci └── config.yml ├── .gitignore ├── README.md ├── docker-compose.yml ├── nginx ├── Dockerfile ├── Dockerfile_custom └── nginx.conf ├── node ├── Dockerfile ├── index.js ├── package.json └── test │ └── alltests.js └── redis └── Dockerfile /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanand/docker-workflow/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanand/docker-workflow/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanand/docker-workflow/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanand/docker-workflow/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanand/docker-workflow/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/Dockerfile_custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanand/docker-workflow/HEAD/nginx/Dockerfile_custom -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanand/docker-workflow/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanand/docker-workflow/HEAD/node/Dockerfile -------------------------------------------------------------------------------- /node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanand/docker-workflow/HEAD/node/index.js -------------------------------------------------------------------------------- /node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanand/docker-workflow/HEAD/node/package.json -------------------------------------------------------------------------------- /node/test/alltests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanand/docker-workflow/HEAD/node/test/alltests.js -------------------------------------------------------------------------------- /redis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanand/docker-workflow/HEAD/redis/Dockerfile --------------------------------------------------------------------------------