Last active
November 21, 2021 16:07
-
-
Save akmamun/c721a8bd30960f7e08685dd69b77a39e to your computer and use it in GitHub Desktop.
Revisions
-
akmamun revised this gist
Nov 21, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ version: "3" services: server: container_name: django_app build: . # from Dockerfile or image name command: gunicorn core.wsgi:application --bind 0.0.0.0:8001 # ports: # - 8000:8000 -
akmamun created this gist
Nov 21, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ version: "3" services: server: container_name: django_app build: . command: gunicorn core.wsgi:application --bind 0.0.0.0:8001 # ports: # - 8000:8000 network_mode: host