Skip to content

Commit

Permalink
Update docker-app-development-workflow.md (dotnet#2769)
Browse files Browse the repository at this point in the history
  • Loading branch information
guardrex committed Jul 27, 2017
1 parent ed29365 commit a3e41f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ services:
Note that this docker-compose.yml file is a simplified and merged version. It contains static configuration data for each container (like the name of the custom image), which always applies, plus configuration information that might depend on the deployment environment, like the connection string. In later sections, you will learn how you can split the docker-compose.yml configuration into multiple docker-compose files and override values depending on the environment and execution type (debug or release).
The docker-compose.yml file example defines five services: the webmvc service (a web application); two microservices (catalog.api and ordering.api); and two data source containers (sql.data based on SQL Server for Linux running as a container, and postgres.data as a Postgres database). Each service will be deployed as a container, so a Docker image is required for each.
The docker-compose.yml file example defines five services: the webmvc service (a web application), two microservices (catalog.api and ordering.api), and two data source containers (sql.data based on SQL Server for Linux running as a container and postgres.data as a Postgres database). Each service is deployed as a container, so a Docker image is required for each.
The docker-compose.yml file specifies not only what containers are being used, but how they are individually configured. For instance, the webmvc container definition in the .yml file:
Expand Down

0 comments on commit a3e41f1

Please sign in to comment.