Skip to content

Commit 394823a

Browse files
committed
added additional env variables to setup_env.sh
1 parent cfaae58 commit 394823a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docker-compose.ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ services:
4141
- "${NGINX_IMAGE}"
4242
image: "${NGINX_IMAGE}"
4343
ports:
44-
- "80:80"
44+
- 80:80
4545
volumes:
4646
- static_volume:/static
4747
depends_on:

docker-compose.prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.7'
33
services:
44
web:
55
image: ${WEB_IMAGE}
6-
command: gunicorn pythondjango.wsgi:application --bind 174.138.52.28:8000
6+
command: gunicorn pythondjango.wsgi:application --bind 0.0.0.0:8000
77
volumes:
88
- static_volume:/static
99
expose:
@@ -33,7 +33,7 @@ services:
3333
restart: always
3434
image: ${NGINX_IMAGE}
3535
ports:
36-
- "8080:8080"
36+
- 80:80
3737
volumes:
3838
- static_volume:/static
3939
depends_on:

0 commit comments

Comments
 (0)