From 9fb04704488a760558999c6427169ce8a3d94cbb Mon Sep 17 00:00:00 2001 From: Kazuki Tsunemi Date: Thu, 6 Jan 2022 18:00:26 +0900 Subject: [PATCH] Modify sample code of docker-compose in README 'build' can be specified either as a string containing a path to the build context. Specify the 'image' instead when start the container from image. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f3a4b73..3d45eab 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ docker run --rm -it \ # The UPSTREAM service must be running. # https://proxy.projectname.vm proxy: - build: outrigger/https-proxy:1.0 + image: outrigger/https-proxy:1.0 container_name: projectname_http_proxy depends_on: - api