diff --git a/compose-test.yaml b/compose-test.yaml index ea47adc..f5e4fbd 100644 --- a/compose-test.yaml +++ b/compose-test.yaml @@ -7,7 +7,7 @@ services: args: SETTINGS_MODULE: mas_problem.settings.test_settings ports: - - "8630:8000" + - "127.0.0.1:8630:8000" volumes: - "staticfiles:/app/static:rw" - type: "bind" @@ -25,7 +25,7 @@ services: depends_on: - "website" ports: - - "8631:80" + - "127.0.0.1:8631:80" volumes: - "staticfiles:/usr/share/nginx/html:ro" diff --git a/compose.yaml b/compose.yaml index ac50dca..3a053a7 100644 --- a/compose.yaml +++ b/compose.yaml @@ -4,7 +4,7 @@ services: website: build: . ports: - - "8620:8000" + - "127.0.0.1:8620:8000" volumes: - "staticfiles:/app/static:rw" - type: "bind" @@ -23,7 +23,7 @@ services: depends_on: - "website" ports: - - "8621:80" + - "127.0.0.1:8621:80" volumes: - "staticfiles:/usr/share/nginx/html:ro" restart: always