Skip to content

Commit

Permalink
Update docker-compose.dev.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jifollan authored and GitHub Enterprise committed Mar 20, 2025
1 parent ce225a8 commit dd38229
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit dd38229

Please sign in to comment.