소스 검색

Correct command for waitress-serve (#564)

docs: Replace waitress serve with waitress-serve
Norbert Stüken 2 년 전
부모
커밋
3e9271756a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/how_to/docker.rst

+ 1 - 1
docs/how_to/docker.rst

@@ -66,7 +66,7 @@ extension). Copy the contents below into the file:
 
     # Finally, run the app on port 8000.
     EXPOSE 8000
-    CMD exec waitress serve --listen "*:8000" "myproject.wsgi:application"
+    CMD exec waitress-serve --listen "*:8000" "myproject.wsgi:application"
 
 
 The "Image as Environment" Approach