Skip to content

Commit

Permalink
Multiple network changes
Browse files Browse the repository at this point in the history
Modifying network to add a bridge driver, specifying network names, adding link to nominatim network from web server, and assigning web server its own ports. All of these changes are in an attempt to allow web server to access the nominatim container and make an API call.
  • Loading branch information
nataliejschultz committed Aug 22, 2023
1 parent 1ada684 commit c9135ed
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions emission/integrationTests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ services:
environment:
- DB_HOST=db
- WEB_SERVER_HOST=0.0.0.0
ports:
- "8181:8181"
links:
- nominatim:rhodeisland-nominatim
volumes:
# specify the host directory where the source code should live
# If this is ~/e-mission-server-docker, then you can edit the files at
Expand Down Expand Up @@ -55,6 +59,13 @@ services:
networks:
- nominatim-network

networks:
emission:
name: emission
nominatim-network:
name: nominatim-network
driver: bridge

volumes:
mongo-data:
nominatim-data:

0 comments on commit c9135ed

Please sign in to comment.