diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index d837b77..f0375f1 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -36,19 +36,18 @@ services: networks: backend_bridge: - # Configuration for the NGINX reverse proxy. This module routes incoming traffic to either the frontend or backend. - gateway: - container_name: secfit_dev_gateway - image: nginx:latest - ports: - - ${DEV_PORT_PREFIX}6:80 - networks: - backend_bridge: - volumes: - - ./nginx/nginx.conf:/etc/nginx/nginx.conf - depends_on: - - frontend - - backend +gateway: + container_name: secfit_dev_gateway + image: nginx:latest + ports: + - "20416:80" # Map host port 20416 to container port 80 + networks: + - backend_bridge + volumes: + - ./nginx/nginx.conf:/etc/nginx/nginx.conf + depends_on: + - frontend + - backend # The network configuration isolates the modules within a single network and an IP. networks: