File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # multi-container-apps
1+ # Multi Containers App
2+
3+ This is a repo for new users getting started with Docker.
4+
5+ You can try it out using the following command.
6+
7+ ``` docker compose up -d ```
8+
9+ And open http://localhost:3000 in your browser.
Original file line number Diff line number Diff line change 22# If you need more help, visit the Docker compose reference guide at
33# https://docs.docker.com/compose/compose-file/
44
5- # Here the instructions define your application as a service called "server".
6- # This service is built from the Dockerfile in the current directory.
7- # You can add other services your application may depend on here, such as a
8- # database or a cache. For examples, see the Awesome Compose repository:
9- # https://github.com/docker/awesome-compose
5+ # Here the instructions define your application as two services called "todo-app" and “todo-database”
6+ # The service “todo-app” is built from the Dockerfile in the /app directory,
7+ # and the service “todo-database” uses the official MongoDB image
8+ # from Docker Hub - https://hub.docker.com/_/mongo.
9+ # You can add other services your application may depend on here.
10+
1011services :
1112 todo-app :
1213 build :
You can’t perform that action at this time.
0 commit comments