Skip to content

Commit 0d9cf1c

Browse files
committed
implemented changes in DA-637
1 parent 8b4df5d commit 0d9cf1c

2 files changed

Lines changed: 15 additions & 6 deletions

File tree

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
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.

compose.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
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+
1011
services:
1112
todo-app:
1213
build:

0 commit comments

Comments
 (0)