├── .circleci └── config.yml ├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.js ├── app.test.js ├── docker-compose.test.yml ├── docker-compose.yml ├── ecosystem.config.js ├── index.js ├── package.json ├── terraform ├── main.tf ├── terraform.tfvars.example └── variables.tf └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .dockerignore 3 | jest 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/app.js -------------------------------------------------------------------------------- /app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/app.test.js -------------------------------------------------------------------------------- /docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/docker-compose.test.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/package.json -------------------------------------------------------------------------------- /terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/terraform/main.tf -------------------------------------------------------------------------------- /terraform/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/terraform/terraform.tfvars.example -------------------------------------------------------------------------------- /terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/terraform/variables.tf -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtinnya/circleci-2.0-beta-docker-example/HEAD/yarn.lock --------------------------------------------------------------------------------