Skip to content

A simple Todo List app built using MEAN stack and ability to run as container using Docker and Docker Compose

Notifications You must be signed in to change notification settings

hcw087/Docker-Todo-Lsit-Dock

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Docker-Todo-Lsit-Dock

A simple Todo List app built using MEAN stack and ability to run as container using Docker and Docker Compose

  • Requires mongo db
  • Use docker compose to run along with mongo-db.

use this docker compose to run the containers


version: '3.3'

services: mongodb: image: mongo:latest volumes: - mongodb:/data/db - mongodb_config:/data/configdb ports: - "27017:27017"

api: depends_on: - mongodb image: bkidocks/todo-list-dock:latest ports: - "3000:3000" - "3001:3001"

volumes: mongodb: mongodb_config:


run docker-compose up

run http://localhost:3000 in your browser

Screenshot

About

A simple Todo List app built using MEAN stack and ability to run as container using Docker and Docker Compose

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 99.4%
  • TypeScript 0.3%
  • JavaScript 0.2%
  • HTML 0.1%
  • CSS 0.0%
  • Pug 0.0%