Skip to content

Commit

Permalink
changed docker network name
Browse files Browse the repository at this point in the history
  • Loading branch information
miguel-merlin committed Dec 12, 2024
1 parent 17b4966 commit 74e6a9b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docker-compose.prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
expose:
- "5432"
networks:
orservice:
orservice_network:
ipv4_address: 10.10.2.2
environment:
- POSTGRES_USER=${POSTGRES_USER}
Expand Down Expand Up @@ -37,7 +37,7 @@ services:
expose:
- "8080"
networks:
orservice:
orservice_network:
ipv4_address: 10.10.2.3
environment:
- ORSERVICE_DB_HOST=orservice_db
Expand Down Expand Up @@ -65,7 +65,7 @@ services:
ports:
- "80:5173"
networks:
orservice:
orservice_network:
ipv4_address: 10.10.2.4
logging:
options:
Expand All @@ -89,9 +89,10 @@ volumes:
postgres-data:

networks:
orservice:
orservice_network:
driver: bridge
name: orservice_network
ipam:
config:
- subnet: 10.10.2.0/24
gateway: 10.10.2.1
gateway: 10.10.2.1

0 comments on commit 74e6a9b

Please sign in to comment.