From 2a33ba6fb059ae8500d799bb1bf32efe66b97da0 Mon Sep 17 00:00:00 2001 From: Takayuki SHIMIZUKAWA Date: Wed, 26 Jul 2023 04:29:35 +0900 Subject: [PATCH] fixes docker-compose.yml comments -p and -t are "docker run" options insted of "docker build" --- .../02 - Setting up complex environments/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Chapter 2/02 - Setting up complex environments/docker-compose.yml b/Chapter 2/02 - Setting up complex environments/docker-compose.yml index 7c57f10..5c5ee48 100644 --- a/Chapter 2/02 - Setting up complex environments/docker-compose.yml +++ b/Chapter 2/02 - Setting up complex environments/docker-compose.yml @@ -7,12 +7,12 @@ services: build: . # this is equivalent to "-p" option of - # the "docker build" command + # the "docker run" command ports: - "5000:5000" # this is equivalent to "-t" option of - # the "docker build" command + # the "docker run" command tty: true database: