├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── app.js ├── controllers └── sharks.js ├── db.js ├── docker-compose.yaml ├── models └── sharks.js ├── package.json ├── routes ├── index.js └── sharks.js ├── views ├── css │ └── styles.css ├── getshark.html ├── index.html └── sharks.html └── wait-for.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/app.js -------------------------------------------------------------------------------- /controllers/sharks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/controllers/sharks.js -------------------------------------------------------------------------------- /db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/db.js -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /models/sharks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/models/sharks.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/package.json -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/sharks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/routes/sharks.js -------------------------------------------------------------------------------- /views/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/views/css/styles.css -------------------------------------------------------------------------------- /views/getshark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/views/getshark.html -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/views/index.html -------------------------------------------------------------------------------- /views/sharks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/views/sharks.html -------------------------------------------------------------------------------- /wait-for.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/do-community/node-mongo-docker-dev/HEAD/wait-for.sh --------------------------------------------------------------------------------